I would like to create two Java programs, that communicate each other by messages. I know method client<->server<->client (using sockets) but I want to create client<->client communication (without server). How could I do it?
I would like to create two Java programs, that communicate each other by messages.
Share
If you have implemented a basic client / server architecture with sockets, then you can do the same thing. Each client is both a client and a server, and you have a more peer to peer type structure.