tags:

views:

405

answers:

1

I have some Java code and I want to call a WCF service which I developed by using VSTS 2008 + C# + .Net 3.5 and using basic Http Binding.

Any reference samples or tutorials are appreciated?

+2  A: 

If you're exposing it as a SOAP service, just take a look at any Java SOAP tutorial. You might want to choose Apache Axis for example. The aim of SOAP is that you shouldn't need to worry about what's implementing the web service... that's not always realistic of course, but it's probably worth just trying it to start with.

Jon Skeet
I expose by using basicHttpBinding, does that mean SOAP service?
George2
Yes. Most Java toolkits should have no trouble with a WCF service using basicHttpBinding. Just don't expose .NET-specific types like DataSet, and it should be ok.
John Saunders
Thanks John! Question answered.
George2