Best example for C# consumimg Java webservice?
+2
A:
Assuming you already have your Java WebService running, just follow these steps:
- Right Click on your project
- Pick "Add Service Reference" option
- Put your WSDL's URL
- Generate client stub (Service Reference)
- Use the generated classes to access your Java WebService
Hope it helps.
Pablo Santa Cruz
2009-09-19 12:31:02
For the most part C# and java web services are compatible. There are a few cases where they are not. If you run into any strange errors, you can Google the errors and find the workarounds.
Chuck Conway
2009-09-19 12:34:24