Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does WCF play well with Java?

Tags:

java

c#

wcf

Which of the WCF Service Protocols work well with Java?

Do the TCP Service Bindings work with java remoting (either Corba, EJB, JMS, etc.)?

What about the WebServices exposed as Service EndPoints. Have these been tested against the common Java WebServices stack for interoperability?

like image 503
mrbradleyt Avatar asked Sep 20 '08 04:09

mrbradleyt


2 Answers

You will need to use one of the HTTP bindings. The TCP binding requires WCF to be on both sides.

like image 159
Bart Avatar answered Nov 15 '22 17:11

Bart


I have had some bad experiences when dealing with a Java based web service using the WS-Security specs. In that case there was very little, and mostly conflicting, documentation and no tech support at all from the vendor. It took us quite a bit of time to get it working but using a WS-Security sample as the basis we got everything working in the end.

The main problem was working against a poorly document black box system with security enabled makes it hard to figure out where you are going wrong, with or without WCF.

like image 21
Maurice Avatar answered Nov 15 '22 17:11

Maurice