Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

生成された Web サービス・クラス

Web サービス・ウィザードは以下に類似したクラスを作成します。

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