Hi Paul,

Please take the below configuration file as an example and check out the ws-rm sample for more infomation.

<beans xmlns="http://www.springframework.org/schema/beans";
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
      xmlns:cxf="http://cxf.apache.org/core";
      xmlns:wsa="http://cxf.apache.org/ws/addressing";
      xmlns:http="http://cxf.apache.org/transports/http/configuration";
      xmlns:wsrm-policy="http://schemas.xmlsoap.org/ws/2005/02/rm/policy";
      xmlns:wsrm-mgr="http://cxf.apache.org/ws/rm/manager";
      xsi:schemaLocation="
      http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
      http://cxf.apache.org/transports/http/configuration 
http://cxf.apache.org/schemas/configuration/http-conf.xsd
      http://schemas.xmlsoap.org/ws/2005/02/rm/policy 
http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm-policy.xsd
      http://cxf.apache.org/ws/rm/manager 
http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd
      http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd";>

<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-jaxws.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-policy.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-addr.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-rm.xml" />

<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />


   <cxf:bus>
       <cxf:features>
           <cxf:logging/>
           <wsa:addressing/>
           <wsrm-mgr:reliableMessaging>
               <wsrm-policy:RMAssertion>
<wsrm-policy:BaseRetransmissionInterval Milliseconds="4000"/> <wsrm-policy:AcknowledgementInterval Milliseconds="2000"/> </wsrm-policy:RMAssertion>
               <wsrm-mgr:destinationPolicy>
                   <wsrm-mgr:acksPolicy intraMessageThreshold="0" />
               </wsrm-mgr:destinationPolicy>
           </wsrm-mgr:reliableMessaging>
       </cxf:features>
   </cxf:bus>

</beans>

Willem.

paul.freeman wrote:
I am trying to implement reliable messaging in JBoss.  I am using CXF 2.0.2
with spring configuration files. I have a WSDL first service developed. The service starts properly, however it cannot respond to messages from a
WCF (.net) client sent with reliable messaging enabled.  I get the following
error:
org.apache.cxf.interceptor.Fault: Message part
{http://schemas.xmlsoap.org/ws/2005/02/rm}CreateSequence was not recognized.
        
I have attached my two config files and the wsdl.
http://www.nabble.com/file/p14034044/identity.wsdl identity.wsdl http://www.nabble.com/file/p14034044/applicationContext.xml applicationContext.xml http://www.nabble.com/file/p14034044/applicationContext-cxf.xml applicationContext-cxf.xml
If anyone can shed some insight, I would greatly appreciate it.
Thanks,
Paul


Here is the entire stack trace:
org.apache.cxf.interceptor.Fault: Message part
{http://schemas.xmlsoap.org/ws/2005/02/rm}CreateSequence was not recognized.
        at
org.apache.cxf.interceptor.DocLiteralInInterceptor.handleMessage(DocLiteralInInterceptor.java:178)
        at
org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:207)
        at
org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:73)
        at
org.apache.cxf.transport.servlet.ServletDestination.doMessage(ServletDestination.java:79)
        at
org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:235)
        at
org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:140)
        at 
org.apache.cxf.transport.servlet.CXFServlet.invoke(CXFServlet.java:278)
        at 
org.apache.cxf.transport.servlet.CXFServlet.doPost(CXFServlet.java:256)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
        at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
        at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
        at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
        at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
        at
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
        at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
        at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
        at
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
        at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
        at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
        at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580)
        at 
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
        at java.lang.Thread.run(Thread.java:595)

Reply via email to