EXPERT RESPONSE
WSDL does not describe services with any specific programming language
constructs or syntax. Therefore, a WSDL file describing a Web service
implemented in Java can be translated to any other programming language
using the appropriate utilities. Microsoft provides just such a utility
called wsdl.exe. To use wsdl.exe to generate a C# client/proxy for a WSDL
file located at http://hostname.com/wsdllocation, use the following command
line:
wsdl /language:cs http://hostname.com/wsdllocation?wsdlname
|