I have 3 web services added to service references in a class library.(This is a sample project for an API use) I need to move these into my project but i cannot add the service references because of the security issues(By security issues i mean the service only responds to one ip address and that is the ip address of our customer's server.) Is there a way to generate a class like using "Ildasm.exe" for that particaluar web service?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You don't need to add web service reference to play with web service code: You can manually generate class to play with e.g.: wsdl.exe /out:d:/Proxy.cs /order http://localhost:2178/Services.asmx And then you can add this file manually to your project. |
|||||||
|
|
You can use this class. I didn't remember where i found the basic code, i added some methods and convert to class before.
And you can use like this
|
|||
|
|
|
Yes if you dont want to Add reference |
|||
|
|