Open source implementation of .NET Remoting
Does anyone know of an open source implementation of .NET Remoting? Preferably in Java or another non-CLR language.
My current project needs to interface with a proprietary app with a good remoting interface from Java, but the only implementations that I have been able to find are J开发者_JAVA技巧-Integra and JNBridgePro.
I am aware that I could use Mono to glean the implementation specifics, but barring a ready-to-use library, I'd prefer an implementation that shows some of the type-marshalling issues that I'll need to deal with.
maybe you should use a SoapFormatter over HTTP.
Then you'll be able to use any platform (capable of send strings over HTTP) to invoke methods of your object.
Regards, Giacomo
精彩评论