WCF and Java Interop using WSHttpBinding,

I am trying to get the simple operation of a WCF application with a Java client. The service provides some simple operations using WSHttpBinding, which makes it great.

Now, for some reason (probably due to incomplete WS- * specifications on the Java side), it is not possible to create a Java client for this WCF service hosted on a remote system.

However, everything works fine when used with basicHttpBinding.

If you have successfully used or implemented WCF (wsHttpBinding), where was it compatible with the Java / Non WCF client?

+6
java wcf client
source share
2 answers

What do you use in Java to generate the client? Not all structures are created equal. :) According to this post here you will need to use WSIT .

+2
source

We have seen WCF / Java related issues. The basic binding in WCF creates WSDL ver 1.1, while other bindings use 1.2 if my memory changes correctly.

We also saw problems that may arise if you reuse a message contract.

Testing the WCF service from XML Spy is a good way to catch such errors.

0
source

All Articles