Hello Problem: Need to proxy an incoming URL to an internal web
server. Requirement: Needs to be a double proxy. The first
proxy will receive the incoming URL via https from the Internet. The
first proxy lives in the Web DMZ. The first proxy will forward the URL to
the second proxy via http. The second proxy lives in the App DMZ.
The final destination is a web server that lives on the internal network. Complication: the incoming URL and the destination URL are
different. Incoming URL:
https://qa-te.triadfinancial.com/EloanWeb/EloanWeb.aspx Destination URL: http://<internal
IP>/BixTalkHTTPReceive/BTSHTTPReceive.dll?EloanInbound/ The double proxy works if the URL is constant, such as
– https://qa-te-triadfinancial.com/proxy1/proxy2/BixTalkHTTPReceive/BTSHTTPReceive.dll?EloanInbound/.
The first proxy keys off of proxy1 and the second proxy keys off of proxy2 such
that the resulting URL to the internal web server contains
BixTalkHTTPReceive/BTSHTTPReceive.dll?EloanInbound/. The big question is whether Apache supports the ability to
rewrite/redirect the URL and proxy that rewritten/redirected URL, all the while
keeping the proxy connections open? If this is possible, then how is it
done? Thanks in advance for any help. Rick / Dan |