Soooo we have this system here that’s working as follows:
We have a Java WS that is exposed to the WWW, so our clients can access it from anywhere.
the Java WS is just a bridge to a .NET C# WS thats sits in our local intranet. The .NET C# WS is using a TcpChannel client to connect to a Windows Service that is listening on a TcpChannel so we could invoke it’s methods from the .NET C# WS
Question is:
I’m looking into eliminating the need for the .NET C# WS – which means –
I want to use Java RMI to invoke a remote method in the C# Windows Service
It is possible to do such a thing? I’ve been googling alot and found nothing yet.
Any help is appreciated!
Let the windows service host some kind of server which enables RPC.
Some alternatives: