views:

43

answers:

1

Hi, I need to consume a Webservice written in pearl in my .net Windows Application. I have been given a .wsdl file.

Please let me know how can i use that Web service in my Application using that .wsdl file.

+1  A: 

Use "Add Service Reference" in Visual Studio. Point it to the WSDL file on disk. That works as well as using a URL.

See "How to Consume a Web Service".

John Saunders