2012-10-18 30 views
1

我正在使用CXF 2.7.0创建一个Java客户机到使用SOAP的WCF Web服务。
我使用wsdl2java工具来生成与Web服务进行通信所需的类。用于WCF Soap的Apache CXF客户机WS

我的问题是,在端点上绑定的ReliableSession Web服务已启用,因为这个时候我尝试将消息发送到Web服务,CXF我得到

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?

+0

如果您得到的答案请发布,因为我面临同样的问题。 –

回答

1

尝试使用cxf版本2.5.4而不是2.7.0。

+1

请你详细解释一下。它是一个版本问题? –