Skip to main content

The Generated Web Service Class

The Web Service Wizard creates a class similar to:

Class CInfo.WebService Extends %SOAP.WebService [ ProcedureBlock ]
{
Parameter NAMESPACE = "http://tempuri.org";
Parameter SERVICENAME = "CompanyInfo";
Parameter USECLASSNAMESPACES = 1;

Method GetCompanyInfo() As %String [ WebMethod ]
{
    Quit "GetCompanyInfo"
}

Method CreateCompanies() As %String [ WebMethod ]
{
    Quit "CreateCompanies"
}

}
FeedbackOpens in a new tab