I want create a ASP.NET Application (aspx site) that connection with a database and create userconnections for the internet. I get a Soap Data (soapapi.wsdl). This file have all function for create a guestuser or get Informations about who apply a GuestUser and the Time.
My Problem is that I don’t know how I can add a reference to this Soap File in C# an execute this functions 🙁 ? I search it but I don’t found a good example :/
What I need for a Namespace and how i set a reference to this wsdl file ?
tarasov
Try to add Service Reference
Right click on project file ->Add Service Reference. In the dialog point to this wsdl file.
At result a proxy c# class will be generated, that allows you to call soap methods as usual code