I'm a bit confused about RMI. The SDK comes with an implementation of RMI which I believe uses sockets. But are there other implementations of RMI, such as over https ?
While exporting Remote objects (UnicastRemoteObject.exportObject()) you can specify a custom client and server socket factories. I am not aware of any providers of the same.
That doesn't quite answer my question. If I rephrase,
Is it possible to do RMI over http?
thanks, D.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
RMI can be used over various transports, JRMP and IIOP being the most common ones. Thesearticles suggest that HTTP can also be used, but that it may not be all that obvious how to set it up.