Java RMI server and Objective C client

前端 未结 1 395
悲&欢浪女
悲&欢浪女 2021-01-23 18:34

I have a java rmi server and an objective C client. I want to use RMI to HTTP tunneling in order to encapsulate the RMI calls into HTTP requests where an RMI servlet handler can

相关标签:
1条回答
  • 2021-01-23 19:05

    You can't do this. RMI/JRMP requires a JVM. RMI/IIOP requires a JVM at the server and an ORB at the client (JVM contains an ORB for the server). IDL requires an ORB at the client as well, and you have to use the fully detailed CORBA API.

    0 讨论(0)
提交回复
热议问题