gmazlami
gmazlami

Reputation: 694

On Top of which technology is Java RMI implemented?

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

Answers (2)

user207421
user207421

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

Related Questions