为什么Apache CXF没有为响应编写自定义异常?

时间:2013-02-18 22:11:24

标签: java exception cxf

在使用Apache CXF v2.7.3实现SSL加密的WebService时,我想测试客户端如何处理自定义异常类(例如MyException)。

因此我有以下服务器端方法:

@WebMethod
public void foo() throws MyException {
    throw new MyException("test!");
}

我还配置了通过以下方式在cxf.xml中登录和传出消息:

<bean id="logInbound" class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
<bean id="logOutbound" class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
<jaxws:inInterceptors>
 <ref bean="logInbound"/>
</jaxws:inInterceptors>
<jaxws:outInterceptors>
 <ref bean="logOutbound"/>
</jaxws:outInterceptors>

使用客户端调用此函数会导致以下控制台输出

INFO: Inbound Message
----------------------------
ID: 1
Address: https://localhost:8443/WebApp/services/ClientService
Encoding: UTF-8
Http-Method: POST
Content-Type: text/xml; charset=UTF-8
Headers: {Accept=[*/*], cache-control=[no-cache], connection=[keep-alive], Content-Length=[184], content-type=[text/xml; charset=UTF-8], host=[localhost:8443], pragma=[no-cache], SOAPAction=[""], user-agent=[Apache CXF 2.7.3]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:foo xmlns:ns2="http://services.client.test.cloud.org/"/></soap:Body></soap:Envelope>
--------------------------------------
18.02.2013 22:49:02 org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging
INFO: Application {http://services.client.test.cloud.org/}ClientService#{http://services.client.test.cloud.org/}foo has thrown exception, unwinding now: org.cloud.test.client.exception.MyException: test!
18.02.2013 22:49:02 org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging
INFO: Application {http://services.client.test.cloud.org/}ClientService#{http://services.client.test.cloud.org/}foo has thrown exception, unwinding now: java.lang.NullPointerException: null

客户端获取“读取XMLStreamReader时出错”。由于“意外的EOF”。我猜,服务器没有写入任何响应。你知道为什么抛出 2 异常以及为什么对客户没有任何回应? 我已经在Apache CXF应用程序中搜索未重定向到客户端的异常,但找不到任何解决方案。

提前致谢!

0 个答案:

没有答案