Reference of Service References and Web References, servicereferences
You can reference WebService in either of the following ways:
1. Service References
Add service reference -------- enter the webservice address and click it to display the service corresponding to the namespace (you can modify the namespace)
Click OK to display a Service References folder.
Call method:
Example: // Service References
ServiceReference1.PDAServiceSoap PdaService = new PDAServiceSoapClient ();
Var downloadCustService = PdaService. DownloadaCust (new DownloadaCustRequest (null, custid, userid ));
2. Web References
Add service reference ---- click [advanced] in the lower left corner ------ service reference setting page ---- click [add web reference] in the lower left corner]
Enter the webService address, and a method corresponding to the web reference name will appear (you can modify the web reference name)
Call method:
Example: // WebReference
WebReference. PDAService Pda = new WebReference. PDAService ();
Var downloadCust = Pda. DownloadaCust (custid, userid );
Note: Do I need to add a suffix after some webservice address references? Wsdl can be referenced.