1

それは可能ですか?

例えば:

サーバ:

class Service
{
    public function methodCall()
    {
        ...
        throw new ExceptionEtc(...);
        ...
    }
}

カスタム例外:

class ExceptionEtc extends SoapFault
{
    // ...
}

クライアント:

try{
   ...
    $client->methodCall();
}
catch(ExceptionEtc $e){
    // !
}

すべての例外はSoapFault タイプ(object(SoapFault)) です。必要なカスタム タイプ (ExceptionEtc. など)。どうやってするか ?WSDL スキームには何が追加されますか? php で可能であれば、wsdl スキームを使用した簡単な例を教えてください。

4

0 に答える 0