shenhengbin
shenhengbin

Reputation: 4294

About the Java Client Call the WCF

I have a Java Client that calls a web service written in Csharp by the axis. And now, I want to change the webservice to the wcf(net tcp ..) . But , I dont know what I can do with the Java Client. Is Anybody can give me some ideas about it ? Thanks!

Upvotes: 1

Views: 290

Answers (1)

Andrew Shepherd
Andrew Shepherd

Reputation: 45272

You can use WCF, but only with simpleHttpBinding.

SimpleHttpBinding conforms to the WS-I Basic Profile 1.1, and can therefore interact with components written using other technologies (in your case, Java)

However, NetTcpBinding does not conform to any public protocol, so its use is limited to communication between .NET components.

Upvotes: 1

Related Questions