Apache XML-RPC 异常处理
从 Apache 的 XML-RPC 实现返回的异常中提取原始异常的最简单方法是什么?
What is the easiest way to extract the original exception from an exception returned via Apache's implementation of XML-RPC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 XML-RPC 规范,它返回 xml 中的“错误”。
这是您所指的“异常”还是您指的是进行 XML-RPC 调用时生成的 Java 异常?
故障示例
According to the XML-RPC Spec it returns the "fault" in the xml.
Is this the "Exception" you are referring to or are you refering to a Java Exception generated while making the XML-RPC call?
Fault example
事实证明,从Apache异常中获取原因异常是正确的。
It turns out that getting the cause exception from the Apache exception is the right one.