I am using apache camel cxf proxy error,
as follows:
<cxf:cxfEndpoint id="reportAuthIncident"
                   address="http://172.21.127.200:10001/authenticateMember";
                   endpointName="s:AuthenticateMember"
                   serviceName="s:AuthenticateMemberService"
                  
wsdlURL="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService?wsdl";
                  
xmlns:s="http://www.ibsplc.com/iloyal/member/authenticatemember/wsdl"; >
                     <cxf:properties> 
                                            <entry key="dataFormat" 
value="CXF_MESSAGE" /> 
                                     </cxf:properties> 
   </cxf:cxfEndpoint> 
   <cxf:cxfEndpoint id="realreportAuthIncident"  
                  
address="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService"; 
                  
wsdlURL="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService?wsdl";>
                       <cxf:properties> 
                                            <entry key="dataFormat" 
value="CXF_MESSAGE" /> 
                                       </cxf:properties> 
                   <cxf:inInterceptors>
                                                <ref bean="logIn" />
                                        </cxf:inInterceptors>
                                        <cxf:outInterceptors>
                                                <ref bean="saajOut" />
                                                <ref bean="wss4jOut" />
                                                <ref bean="logOut" />
                                        </cxf:outInterceptors>
                                        
   </cxf:cxfEndpoint> 

  
  <camel:camelContext xmlns="http://camel.apache.org/schema/spring";
id="context1">
        <camel:endpoint id="callAuthRealWebService"
uri="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService?throwExceptionOnFailure=false";
/>
    <camel:route trace="true">
      
      <camel:from uri="cxf:bean:reportAuthIncident"/>
      
      
      <camel:to uri="cxf:bean:realreportAuthIncident" />
      
    </camel:route>
  </camel:camelContext>


What follows is configured correctly?
<cxf:cxfEndpoint id="realreportAuthIncident"  
                  
address="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService"; 
                  
wsdlURL="http://172.20.35.232:5220/cea-ws/services/AuthenticateMemberService?wsdl";>





--
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-tp5739286p5739293.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to