Russell
Russell

Reputation: 17739

Consume Java web services from .Net

I would like to know if it is possible to consume a Java web service using .NET (doesn't matter which version) and any sources to documentation for this.

Google has not helped me and I have had trouble finding anything from MSDN/Technet about this.

Thanks

Upvotes: 1

Views: 287

Answers (1)

Jacob
Jacob

Reputation: 78900

As long as the Java web service uses standards such as WSDL, you should be able to add a service reference to it in .NET. That's not to say that there wouldn't be quirks you might have to look out for, but you should have interoperability.

This article shows you how to add a service reference in Visual Studio 2010.

Upvotes: 5

Related Questions