Hello, You could use a camel service unit listening to you request with jetty and then routing your requests to you back end:
Your camel context should look like this: <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring"> <route> <from uri="jetty:http://0.0.0.0:8088/systemblistenning"/> <to uri="http://systemAhostname:9080/mywebserviceendpoint"/> </route> </camelContext> Bye, Kévin -- View this message in context: http://servicemix.396122.n5.nabble.com/ServiceMix-Routing-with-various-host-tp2847927p2851427.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
