In our local network we have an existing web IDE type application that is accessed via popular web browsers.
I would like to use Jboss FUSE ESB to be/act as a tunnel between the local and a the Cloud/any network.
So that we, via a web browser client, could connect to the application indifferently the network the browser is in. sending the req-res via the ESB an to the client browser at all times.
I'm using the proxy approach :
- I type in a url into the browser and it redirects me to the application using the ESB for that first time only.
- then I start interacting with the application in a normal way. but not through the ESB.
is this possible with JBOSS-FUSE-ESB, or is it the wrong tool for this task ?
<camelContext trace="true" id="blueprintContext" xmlns="http://camel.apache.org/schema/blueprint">
<route id="REQUEST">
<from uri="jetty:http://0.0.0.0:1805/myRemoteApp?matchOnUriPrefix=true" id="TO-APP">
<description/>
</from>
<to uri="jetty:http://my.cpny.com:1804/myapp/mainServlet?bridgeEndpoint=true&throwExceptionOnFailure=false" id="RealServer-IN"/>
</route>
any suggestions are very much welcome.