Hi Freeman, Thank you for the reply. This works like a charm. I have another thing which i am stuck with. >From my proxy bundle i am exposing proxy services using cxf endpoint and producer is a JAXWS endpoint which is present in another bundle. <cxf:cxfEndpoint id="xyzWSV2" > address="/xyzWSV2Port" > endpointName="s:xyzWSV2Port" > serviceName="s:xyzWSV2Service" > wsdlURL="etc/xyzV2.wsdl" > xmlns:s="http://www.ccc.com/xyzWS"/>
<camelContext xmlns="http://camel.apache.org/schema/spring" > <route> <from uri="cxf:bean:customerWSV2?dataFormat=MESSAGE" /> <setExchangePattern pattern="InOut"/> <process ref="proxyInProcessor" /> *<to uri="http://localhost:8181/aaa/bbb/xyzV1Port"/> * <to uri="proxyOutProcessor" /> </route> </camelContext> How can i refer in camel route to use real web service as *<to uri="/xyzV1Port"/>* instead of *<to uri="http://localhost:8181/aaa/bbb/xyzV1Port"/>.* Both for proxy and actual web services will have same context. Does using nmr a good option??? If so how can i use with JAXWS endpoint with nmr and refer to camel context?? and our real web service already have some clients who should not be disturbed Thanks, Potti -- View this message in context: http://servicemix.396122.n5.nabble.com/Install-WS-as-bundles-and-opening-accessing-WSDL-in-browser-tp5714152p5714211.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
