Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
Using Talend ESB, I want to proxy my REST service that is deployed, for example, on: http://hostnameA:8080/web_app to http://hostnameB:8085/web_app. That means, when I want to invoke the service (http://hostnameA:8080/web_app), I need to invoke them on: http://hostnameB:8085/web_app. It is just a simple proxy route.
I tried to do this using TOS and Talend ESB Studio, but without result. I tried something similar with Axis web services and works fine. My configuration for this case was:
Part of camel-config.xml file
address="http://proxy_hostname:8090/application/service/TokenService"
endpointName="service"
serviceName="s:TokenService"
wsdlURL="etc/TokenService.wsdl"
xmlns:s="http://tempo.intalio.org/security/tokenService/"/>
serviceName="serviceNS:TokenService"
endpointName="serviceNService" address="http://hostname:8080/axis2/services/TokenService">
....
Can someone help me?
Thanks in advance!