Found this will surfing the intertubes. I’m using it to build my first Webservice integration into RightNow using their desktop integration API.
Here were my steps in creating the dll.
- Turn the WSDL into buildable, C-Sharp code
- Compile the C-Sharp code into a referenceable DLL
"C:\Program Files\Microsoft SDKs\Windows\v6.0a\bin\wsdl.exe" /l:cs /protocol:SOAP https://www.penproplus.com/pppwebservice/pppwebservice.asmx?WSDL
c:\windows\microsoft.net\Framework\v3.5\csc /t:library /r:System.Web.Services.dll /r:System.Xml.dll PPPWebServices.cs
I had a couple of wonky path issues when running these commands. I had to make sure I was running the CSC compiler from the .Net Framework directory. Otherwise, I get some complaints about missing dlls and other grumpy messages