Enabling coloc feature is causing : SOAPFaultException: No binding operation info while invoking unknown method with params unknown.

2013-07-09 Thread remo408
Hi , The application is working fine if i dont enable this feature but when i enable coloc i get : Caused by: javax.xml.ws.soap.SOAPFaultException: No binding operation info while invoking unknown method with params unknown. at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProx

Re: org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted

2013-06-18 Thread remo408
Updating the CXF version to 2.7.4 partly fixed the issue. Then i need to Update my interceptor code as following to resolve this issue . The solution is well explained in this link: public class TestOutInterceptor extends AbstractSoapInterceptor { private static Logger logger = LoggerFactory

Re: org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted

2013-06-18 Thread remo408
If i use cxf 2.7.4 version i am getting following outbound message INFO: Outbound Message --- ID: 1 Content-Type: text/xml Headers: -- -- View this message in context: http://cxf.547215.n5.nabble.com/org-w3c-dom-DOMException-HIERARCHY

org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted

2013-06-18 Thread remo408
Hi i created an cxf:outInterceptors to collect the responseTime and payload and i get the following exception :WARNING: Interceptor for {http://test.org/Test/TestService/v1}TestService#{http://test.org/Test/TestService/v1}getTestData() has thrown exception, unwinding now org.w3c.dom.DOMException:

Enum Representation in WSDL

2013-05-29 Thread remo408
An Enum like below: public enum CustomerType { PRIVATE, BUSINESS } Can be represented in WSDL as: How can we represent enum like below in WSDL: public enum CustomerType { PRIVATE{public BigInteger getNcid() { return new BigInteger("1"); }

Re: Handle Message for interceptor getting called after the service method is called

2013-05-10 Thread remo408
Hi Daniel, That resolved my issue. Thanks For your help. -- View this message in context: http://cxf.547215.n5.nabble.com/Handle-Message-for-interceptor-getting-called-after-the-service-method-is-called-tp5726932p5727520.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: Handle Message for interceptor getting called after the service method is called

2013-05-03 Thread remo408
HI Yue, I want my interceptor to be called before my serviceimpl but with phase.Invoke the behavior looks different it is getting called after the serviceimpl call. Thanks, remo. -- View this message in context: http://cxf.547215.n5.nabble.com/Handle-Message-for-interceptor-getting-called-aft

Handle Message for interceptor getting called after the service method is called

2013-04-29 Thread remo408
Handle Message for interceptor getting called after the service method is called public class TestInterceptor extends AbstractSoapInterceptor { public TestInterceptor() { super(Phase.INVOKE); } @Override public void handleMessage(SoapMessage