Is it possible to post a payload to a existing Servlet on another server using Camel ?
Eg. <route> <from uri="direct:start" /> <to uri="xslt:sometransform.xsl"/> <to uri="http://localhost:8080/myApp/ServletSample" /> Where http://localhost:8080/myApp/ServletSample is an existing Servlet ? Thanks
