I want to create a Java class run in Unix and this class will create a socket call to another Java class which is run in Window NT platform, Is it possible to do that ?
Is it have same java coding to have socket call in UNIX enviroment ? when the data is text string , is it possible for the java program in window NT read the same text string after it receive it from the socket ?
Java running on a unix platform communicates via sockets with other platform types irregardless of the operating system the other platform is running.
Basically one machine acts as a server which creates a socket and listens on a port for connections requests, reads requests and sends responses. Another machine acts as a server and connects to the server port, makes requests, and reads the response.