vote up 2 vote down star
1

I have a webservice on a remote host that I need to invoke from ASP.NET/C# class. What is the simplest way of calling a method via SOAP, given WSDL url and a method signature?

Given: WSDL url as string(available only at runtime, i.e. variable) Method signature(constant)

Need to: Create a soap client and perform method call.

flag

2 Answers

vote up 2 vote down check

See here: http://msdn.microsoft.com/en-us/library/d9w023sx(VS.80).aspx

Its very easy in visual studio - you simply add the web reference url and it generates the proxy stub for you.

link|flag
1  
-1: Don't jump to "Add Web Reference" until he say he's stuck at .NET 2.0 and can't use WCF. Otherwise you may be condemning him to live in the past for no good reason. – John Saunders Jun 29 at 1:14
1  
The question mentioned "simple". That is the simplest way :) Besides - using WCF is extremely similar - you just use "Add Service Reference" as opposed to add "Web Reference". A good overview is here: blog.mstern.at/index.php?/archives/… – rifferte Jun 29 at 1:18
good article - thank you! Though, what if I WSDL's is only available at runtime? – Alex N. Jun 29 at 2:17
If two things are just as simple, maybe don't recommend the one with no future, ok? – John Saunders Jun 29 at 2:25
If the WSDL is not available when you develop your client, then there's something seriously wrong. Maybe the service owners don't understand web services, something like that. The WSDL needs to be available to you, to develop the client. – John Saunders Jun 29 at 2:26
show 2 more comments
vote up 1 vote down

The simplest thing to do is to just use "Add Service Reference" and point to the WSDL. It will generate the proxy classes for you, including a proxy method which should match the method signature you've been given.

See if you find How to Consume a Web Service to be helpful.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.