XML-RPC の Apache の実装を介して返された例外から元の例外を抽出する最も簡単な方法は何ですか?
John the Statistician
質問する
2287 次
2 に答える
4
原因の例外を Apache 例外から取得するのが正しいことがわかりました。
} catch (XmlRpcException rpce) {
Throwable cause = rpce.getCause();
if(cause != null) {
if(cause instanceof ExceptionYouCanHandleException) {
handler(cause);
}
else { throw(cause); }
}
else { throw(rpce); }
}
于 2008-09-11T14:09:05.793 に答える
1
XML-RPC 仕様によると、xml で「障害」を返します。
これはあなたが参照している「例外」ですか、それとも XML-RPC 呼び出し中に生成された Java 例外を参照していますか?
故障例
HTTP/1.1 200 OK
Connection: close
Content-Length: 426
Content-Type: text/xml
Date: Fri, 17 Jul 1998 19:55:02 GMT
Server: UserLand Frontier/5.1.2-WinNT
<?xml version="1.0"?>
<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>4</int></value>
</member>
<member>
<name>faultString</name>
<value>
<string>Too many parameters.</string>
</value>
</member>
</struct>
</value>
</fault>
</methodResponse>
于 2008-09-09T21:49:50.227 に答える