I have Visual Studio 2010 Ulitmate (with MSDN Premium), but I can't seem to find this file.
I have tried installing the Visual Studio SDK but I can't seem to find the file.
I have looked in:
- C:\Windows\Microsoft.NET\Framework\v3.5
- C:\Windows\Microsoft.NET\Framework\v4.0.30319
- C:\Program Files (x86)\Microsoft Visual Studio 10.0\SDK\v3.5
But I can't seem to find it.
(In case you are wondering, I need it to perform these steps.)
it should be under C:\Program Files (x86)\MicrosoftSdks\Windows\v7.0a\Bin . You should be able to use wsdl from visual studio command prompt and typing path in visual studio command prompt will give you the locations of all tools that you might need. Hope this helps
Visual Studio 2010 comes with its own command prompt with a lot of functionality ready to use. You can invoke the wsdl command from there
Can't run wdsl.exe directly from the command prompt because it's not in the DOS search path. You will need to explicitly indicate the full path to the wdsl.exe
I haven't tried the code below but you should be able to run it as a prebuild action on your project.
MsBuild script
<Target Name="UpdateWebReference">
<Message Text="Updating Web Reference..."/>
<Exec Command="wsdl.exe /o "e;$(OutDir)"e; /n "e;$(WebServiceNamespace)"e; "e$(PathToWebServiceURL)"e;"/>
</Target>