tags:

views:

516

answers:

2

Besides using Web Services, or POX (or custom HTTP), are there some other techniques that I could utilize for calling services exposed from WCF via _______ to the Java world? These requests will be in the same machine. Maybe RAW TCP/IP?

I'm just inquiring for a project that we need to possible provide some method of calling synchronous code in the .NET world and return results to our Java world.

Thanks for suggestions.

A: 

You can try following project http://iiop-net.sourceforge.net/

QrystaL
+1  A: 

To talk with a Java client you'll have to use one of the interoperable protocols which limits you to going across HTTP or HTTPS. TCP can only be used between clients running Windows on an intranet. Even on the same machine you won't be able to use Named Pipes either for the same reason.

The interoperable protocols are covered in Chapter 1 of "Programming WCF Services" by Juval Lowy.

Terry Donaghe