I have a java rmi client-server and I need to put a VB program in the middle to perform some monitoring. To facilitate this, I wrote a rmi-xmlrpc bridge in Java. It acts as a RMI server and converts the RMI method calls into XMLRPC method calls. Unfortunately running it fails because it's apparently trying to serialize the whole xmlrpc infrastructure. I need to get this working ASAP.
More details at: http://pastie.caboo.se/7745
fundedPeople succeed in answering guy_argo's questions 0% of the time (0 success in 3 attempts).
Answers by: Dane Summers | Don Miguel de los Platanos | Jason McMunn
I think you need to create a TransportFactory. This should give you
a stateless serializable object that you can send over the RPC channel. But I'm not sure. Hope that helps, I'll try to do some more research when I have time.
Sounds promising. Look forward to hearing more.