Joseph Hwang
2013-08-19 13:20:34 UTC
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]
"[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]