Visual Web Developer 
How to: Call a Web Service 

After you add a Web reference to the XML Web service to your project, you can use the server name to create a proxy object that allows you to call the methods in the XML Web service.

To call a Web service programmatically

  • Use the Web reference name (or server name) as the namespace, and the name of its .WSDL file (or the service name) as the proxy class.

    The following code example calls a Web service method to get a string value. Web service variable names and syntax are highlighted.

    Visual Basic
    Private Sub Call_Web_Service_Method() 
        Dim <b>CallWebService</b> as New <b>ServerName.WebServiceName()</b> 
        Dim <b>sGetValue</b> as String = <b>CallWebService.MethodName()</b> 
        Label1.Text = <b>sGetValue</b> 
    End Sub 

    C#
    private void Call_Web_Service_Method()
    {
        <b>ServerName.WebServiceName</b> <b>CallWebService</b> = 
            new <b>ServerName.WebServiceName()</b>;
        String <b>sGetValue</b> = <b>CallWebService.MethodName()</b>;
        Label1.Text = <b>sGetValue</b>;
    }

See Also

Tags :


Community Content

g-unit
The C# Code
C#
      private
      void Call_Web_Service_Method()
{
    ServerName.WebServiceName CallWebService = new ServerName.WebServiceName();
    String sGetValue = CallWebService.MethodName();
    Label1.Text = GetValue;
}
Tags : c# service web call

Page view tracker