How can I add WCF Service Reference to my Java Console Application ? I want to use this method for prove the interoperability of my wcf Service.
+2
A:
Make your WCF service able to return a wsdl and consume that on the Java application side.
Otávio Décio
2009-12-08 19:46:55
A:
The whole point about web services is that they are interoperable - how do you think any application communicates with a web service? Answer: your service provides a WDSL document (Web Services Description Language) and your Java console app communicates with it, according to the WDSL, via SOAP messaging.
flesh
2009-12-08 19:53:13
2009-12-08 19:56:06
A:
Take a look at wscompile - if you have your mex endpoint enabled, wscompile should be able to generate stubs for you based on the wsdl
RandomNoob
2009-12-08 20:35:38