Does anyone know how to read the data from the 3d party Web Site, using Web Services? To get to that Web Site I'll have to use UserName and Password, which are given to me.
You will be consuming a web service. If you are using Visual Studio.NET, this is as painless as using any other .NET library. In short, you add a web reference by specifying the URL of th web service you want to consume and Visual Studio creates a proxy class, which acts like any other class, exposing the methods you can call in your application.
If the web service requires a username and password, your application will have to supply those when it consumes the service. There are a few ways they could have implemented this - for example using SOAP Headers to send the un/pw.
If you are not using Visual Studio.NET, the process is a little more involved, but still pretty simple. You will use the WSDL command line tool to generate the proxy class.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.