Reputation: 694
I am working on a little project and wondered, on top of which technology the communication in Java RMI is implemented. More Precisely: How are the "links" between the communicating RMI clients/Servers implemented? Do they use Sockets (TCP/UDP)?
Upvotes: 0
Views: 128
Reputation: 311048
All the RMI protocols (JRMP, IIOP, JERI, etc) are implemented over TCP sockets, and JRMP and JERI (at least) are also layered over Object Serialization.
Upvotes: 1
Reputation: 7750
Yes along with IIOP. You can find more info at
Upvotes: 1