1

SOAP を使用する WCF Web サービスに対して、CXF 2.7.0 を使用して Java クライアントを作成しています。
wsdl2java ツールを使用して、Web サービスとの通信に必要なクラスを生成しました。

私の問題は、エンドポイント バインド上の Web サービスで、reliableSession が有効になっていることです。このため、cxf を使用して Web サービスにメッセージを送信しようとすると、

Oct 19, 2012 1:11:59 AM org.apache.cxf.ws.rm.Proxy invoke
INFO: Sending out-of-band RM protocol message {http://schemas.xmlsoap.org/ws/2005/02/rm}CreateSequence.
Oct 19, 2012 1:11:59 AM org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging
WARNING: Interceptor for {http://schemas.xmlsoap.org/ws/2005/02/rm}SequenceAbstractService#{http://schemas.xmlsoap.org/ws/2005/02/rm}CreateSequence has thrown exception, unwinding now
org.apache.cxf.interceptor.Fault: Could not send Message.
    at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:271)
    at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:531)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:464)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:376)
    at org.apache.cxf.ws.rm.Proxy.invoke(Proxy.java:287)
    at org.apache.cxf.ws.rm.Proxy.createSequence(Proxy.java:183)
    at org.apache.cxf.ws.rm.RMManager.getSequence(RMManager.java:448)
    at org.apache.cxf.ws.rm.RMOutInterceptor.handle(RMOutInterceptor.java:152)
    at org.apache.cxf.ws.rm.AbstractRMInterceptor.handleMessage(AbstractRMInterceptor.java:83)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:271)
    at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:531)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:464)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:367)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:320)
    at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:89)
    at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:134)
        at .........

CXFでreliableSessionを有効にする方法を知っている人はいますか?

4

1 に答える 1

1

2.7.0 の代わりに cxf バージョン 2.5.4 を試してください。

于 2012-12-31T18:12:34.583 に答える