I want to test  SOAP proxy service before calling real webservice written
using Jetty component that is deployed on latest Jboss Fuse-6.2.

1)employeeRouterEndpoint is Soap PROXY service which is mentioned
as[http://0.0.0.0:9199/OrderEndpoint]
what is difference between jetty:http and only mentioning http:

2)how to send the request to Soap PROXY service
i.e.cxf:bean:employeeRouterEndpoint?

   <camelContext xmlns="http://camel.apache.org/schema/spring";
id="employeeRouteContext">

        <route id="employeeRoute">
            <from uri="cxf:bean:employeeRouterEndpoint"/>
            <from uri="cxf:bean:employeeServiceEndpoint"/>
        </route>
    </camelContext>


    <bean id="loggingInInterceptor"
class="org.apache.cxf.interceptor.LoggingInInterceptor"/>

   
    <cxf:cxfEndpoint id="employeeServiceEndpoint"
                     wsdlURL="http://xxx.xx.xx.x:9000/order?wsdl";
                     address="http://xxx.xx.xx.x:9000/order";
                     endpointName="OrderEndpoint"
                     serviceName="OrderEndpointService"
                     xmlns:s="http://order.camelinaction";>
        <cxf:properties>
             <entry key="dataFormat" value="MESSAGE"/>
             <entry key="defaultOperationNamespace"
value="http://order.camelinaction"/>
        </cxf:properties>
    </cxf:cxfEndpoint>

    <cxf:cxfEndpoint id="employeeRouterEndpoint"
address="http://0.0.0.0:9199/OrderEndpoint";
                     wsdlURL="http://xxx.xx.xx.x:9000/order?wsdl";
                     serviceName="s:OrderEndpointService"
                     xmlns:s="http://order.camelinaction";>
        <cxf:inInterceptors>
            <ref bean="loggingInInterceptor"/>
        </cxf:inInterceptors>
        <cxf:properties>
            <entry key="dataFormat" value="MESSAGE"/>
        </cxf:properties>
    </cxf:cxfEndpoint>




--
View this message in context: 
http://camel.465427.n5.nabble.com/how-to-send-the-SOAP-proxy-request-deployed-in-local-fuse-jetty-tp5769116.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to