how to generate web service out of wsdl
There isn’t a magic bullet solution for what you’re looking for, unfortunately. Here’s what you can do: create an Interface class using this command in the Visual Studio Command Prompt window: wsdl.exe yourFile.wsdl /l:CS /serverInterface Use VB or CS for your language of choice. This will create a new .cs or .vb file. Create a … Read more