Cann't find WSDL.EXE

ADH

Member
Joined
Apr 17, 2005
Messages
22
Location
ISRAEL
Programming Experience
10+
I need to create a proxy from a wsdl file.
I have VS2008 Installed, but cann't fint the wsdl.exe.
Where is it located?
Thanks
 
In VS you use the "add web reference" or "add service reference" dialogs to generate and add the proxy to project. Wsdl command line tool is not need for this, it is part of the Windows/.Net SDK and is also possibly installed by the VS Pro edition.
 
Thanks,
How much I understood, that when I have just the wsdl file of the WS to call, that I need to create a proxy for/from it, and that just a reference is not enough.
Am I right or wrong?
 
Yes, you add the web reference, IDE generates the proxy for you, and you write code to interact with the service using that proxy class.
 
Back
Top