Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread hutao1
get the same error: Caused by: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name {http://www.ibsplc.com/iloyal/member/authenticatemember/wsdl}authenticateMember. Please check the message headers of operationName and operationNamespace.

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread hutao1
camel-cxf source code as follows: Client createClient() throws Exception { // get service class if (getDataFormat().equals(DataFormat.POJO)) { ObjectHelper.notNull(getServiceClass(), CxfConstants.SERVICE_CLASS); } if (getWsdlURL() == null && getService

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread Willem jiang
you can set the header value the constance just like this authenticateMember -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com (http://jnn.javaeye.com/) (Chinese) Twitte

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread hutao1
HI, since wsdlUrl and serviceClass is null ,so operationName and operationNamespace is setted default value. cxfendpoint: http://10.20.208.72:5120/cea-ws/services/AuthenticateMemberService";>

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread hutao1
how to achieve inl the camel-config.xml? As it is configured correctly. authenticateMember http://www.ibsplc.com/iloyal/member/authenticatemember/wsdl -- View this message in context: http://camel.465427.n5.nabble.com/org-apache-cxf-binding-soap-SoapFa

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-23 Thread Willem jiang
Hi You can set the operation on the message header just like this from("cxf:xxx").setHeader(CxfConstants.OPERATION_NAME, GREET_ME_OPERATION).to("cxf:xxx"); Please go through the wiki page[1] for more information. [1]http://camel.apache.org/cxf.html -- Willem Jiang Red Hat, Inc. Web: http

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-22 Thread hutao1
Will you be able to give examples。 Thank you. -- View this message in context: http://camel.465427.n5.nabble.com/org-apache-cxf-binding-soap-SoapFault-Can-t-find-the-BindingOperationInfo-with-operation-name-tp5739286p5739991.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-22 Thread hutao1
Will you be able to give examples? Thank you. -- View this message in context: http://camel.465427.n5.nabble.com/org-apache-cxf-binding-soap-SoapFault-Can-t-find-the-BindingOperationInfo-with-operation-name-tp5739286p573.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-21 Thread Willem jiang
/) (Chinese) Twitter: willemjiang Weibo: 姜宁willem On Sunday, September 22, 2013 at 9:34 AM, hutao1 wrote: > Thank you for your reply. > > The latest configuration is as follows, but still the same error: > > Caused by: org.apache.cxf.binding.soap.SoapFault: Can't find the &g

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-21 Thread hutao1
Thank you for your reply. The latest configuration is as follows, but still the same error: Caused by: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name {http://www.ibsplc.com/iloyal/member/authenticatemember/wsdl}authenticateMember. Please chec

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-17 Thread Willem jiang
runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at > org.e

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-14 Thread hutao1
I am using apache camel cxf proxy error, as follows: http://172.21.127.200:10001/authenticateMember"; endpointName="s:AuthenticateMember" serviceName="s:AuthenticateMemberService" wsdlURL="http://172.20.35.232:5220/cea-ws/services/Authenticat

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-13 Thread hutao1
How to modify the following configuration? in the following I offer wsdl camel-config.xml : > > > http://www.springframework.org/schema/beans"; >xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >xmlns:camel="http://camel.apache.org/schema/spring"; >xmlns:cxf="

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-13 Thread Aki Yoshida
unit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > at > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > at > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at > org.

Re: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-13 Thread Charles Moulliard
You get this exception as the SOAP message received contains an operation which is not mapped correctly to WSDL definition. This thread covers this point : http://stackoverflow.com/questions/14705362/repsonse-from-web-service-using-apache-cxf-shows-no-binding-operation-info - Apache Committe

org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name

2013-09-13 Thread hutao1
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) Caused by: org.apache.cxf.binding.soap.SoapFault: Can't find the BindingOperationInfo with operation name {http://www.ibsplc.com/iloyal/member/authenti