web services - Duplicating a same SOAP webservice in Camel -


a soap webservice been exposed system. have got wsdl file of webservice. im able send request , response soap ui. want duplicate wsdl soap webservice in camel routes deployed in servicemix, thereby making esb expose similar webservice system's webservice. way many systems access webservice contact system. how duplicate webservice using wsdl file of system??

to duplicate webservice, exposed system, can use http proxy route, based on jetty:

    <route id="serviceproxy">         <from uri="jetty:http://0.0.0.0:8186/service/?disablestreamcache=true&amp;matchonuriprefix=true&amp;continuationtimeout=900000&amp;httpclient.timeout=120000"/>         <to uri="jetty:http://{{app-server.host}}:{{app-server.http.port}}/service/?bridgeendpoint=true&amp;throwexceptiononfailure=false&amp;continuationtimeout=120000&amp;httpclient.timeout=900000"/>     </route> 

you can write same route on javadsl.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -