Hi all I need to be able to make a client using .Net which will be able to read web services from the internet.
I don’t understand the approach. As for example I need to be able to read this kind of document LINK Can someone provide me with a example or a link of how to achieve this?
In Visual Studio, create a new project – or use an existing one. In the solution tree, right click and “Add new web reference”, enter the Url for the WSDL – the link you posted. Visual Studio will create a namespace and classes based on the WSDL (Web Service Description Language) that you can use to create an instance of your web service and methods.
Cheers
Simon