[jboss-user] [JBoss Web Services] - [org.apache.cxf.ws.rm.RMInInterceptor] (default task-57) WS-ReliableMessaging is required by this endpoint.

Joseph Hwang do-not-reply at jboss.com
Mon Aug 19 09:20:34 EDT 2013


Joseph Hwang [https://community.jboss.org/people/aupres] created the discussion

"[org.apache.cxf.ws.rm.RMInInterceptor] (default task-57) WS-ReliableMessaging is required by this endpoint."

To view the discussion, visit: https://community.jboss.org/message/833066#833066

--------------------------------------------------------------
With WildFly Alpha 4, I try to implement Java Web Service.
This is my Web Services Interface,

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.ParameterStyle;
import javax.jws.soap.SOAPBinding.Style;
import javax.jws.soap.SOAPBinding.Use;
import javax.xml.ws.soap.Addressing;
import org.jboss.ws.api.annotation.PolicySets;
@WebService(
name="HelloWorldPort", 
portName="com.aaa.ws.IHelloWorld",
serviceName="HelloWorldService",
targetNamespace=" http://www.aaa.com/ http://www.aaa.com")
@SOAPBinding(style=Style.DOCUMENT, use=Use.LITERAL, parameterStyle=ParameterStyle.BARE)
@Addressing(enabled=true, required=false)
@PolicySets({"WS-RM_Policy_spec_example", "WS-SP-EX223_WSS11_Anonymous_X509_Sign_Encrypt"})
public interface IHelloWorld {
@WebMethod(operationName="callNameMethod")
@WebResult(name="helloEcho")
public String sayHello(@WebParam(name="helloName", mode=WebParam.Mode.IN) String name);
}

Deployment is successful, But When calling ws interface, Exception is thrown

[org.apache.cxf.ws.rm.RMInInterceptor] (default task-57) WS-ReliableMessaging is required by this endpoint.

Pls, I need your advice!
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/833066#833066]

Start a new discussion in JBoss Web Services at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2044]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20130819/98528857/attachment-0001.html 


More information about the jboss-user mailing list