Please run these two commands in visual studio command prompt one by one.
Wsdl /language:CS /username:sa /password:XXXXX http://192.168.1.X/serwebservice/Service.asmx /n:XXXSmsService /o:XXXSmsService.CS
After generating result run this query.
csc /t:library /out:XXXSmsService.dll XXXSmsService.CS
This will generate a class file and a dll on below path.
Go To “C:\Program Files\Microsoft Visual Studio 9.0\VC” there you will find XXXSmsService.CS and XXXSmsService.dll.
Enjoy :)
Advertisement