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&matchonuriprefix=true&continuationtimeout=900000&httpclient.timeout=120000"/> <to uri="jetty:http://{{app-server.host}}:{{app-server.http.port}}/service/?bridgeendpoint=true&throwexceptiononfailure=false&continuationtimeout=120000&httpclient.timeout=900000"/> </route> you can write same route on javadsl.
Comments
Post a Comment