Interaction between a TCP server on 32bit machine and UI on 64bit machine
Suppose I have a 32bit TCP server application implemented in c language running on a machine, and a client(UI) is running on a 64bit machine. RPC – Inter process communication is happening. Now can my UI(running on 64bit ) can interact with the backend server which is running on 32bit application. What problems will this have. Or can we transfer any amount of data both from server to client and client to server. Explain the core working of this, ultimately we are transferring data through the sockets, what is its relation with the CPU machine we are working with. If there is a problem why will there be a problem.