Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF & Java Interop using WSHttpBinding,

I’m trying to get a simple WCF application work with Java Client. Service exposes few simple operations using WSHttpBinding, which it does perfectly.

Now, due to some reason (probably due to incomplete WS-* specifications at Java side) it seems impossible to generate a Java Client for this WCF service hosted on remote system.

However, everything works fine when used with basicHttpBinding.

If you successfully use or have implemented WCF (wsHttpBinding) where it was interoperable with Java/Non WCF client?

like image 596
Aakash Avatar asked Jul 23 '10 12:07

Aakash


People also ask

What does WCF mean?

Windows Communication Foundation (WCF) is a framework for building service-oriented applications. Using WCF, you can send data as asynchronous messages from one service endpoint to another. A service endpoint can be part of a continuously available service hosted by IIS, or it can be a service hosted in an application.

Is WCF still in use?

With a lot of WCF code still in use, it's good to see a supported route that helps bring that code to newer platforms and the . NET cross-platform world where WCF code can now run on Linux servers as well as on Windows.

What is WPF and WCF?

WCF = Windows Communication Foundation is used to build service-oriented applications. WPF = Windows Presentation Foundation is used to write platform-independent applications.

Is WCF a Web service?

Windows Communication Foundation (WCF) allows you to create a service that exposes a Web endpoint. Web endpoints send data by XML or JSON, there is no SOAP envelope. This topic demonstrates how to expose such an endpoint. The only way to secure a Web endpoint is to expose it through HTTPS, using transport security.


1 Answers

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

like image 106
gbvb Avatar answered Oct 02 '22 20:10

gbvb