Hello,
I am very desperate to resolve an issue I've been having. First off, I apologize, the servers I have in my office are all Windows based servers.
If you kept reading, thank you. Here goes:
I am currently running a third party software hosted in IIS6.0 on W2K3. The software is hosted as Virtual Directories under the Default Website.
The probelm, if you visit our website webtools.luceresearch.com, you will be prompted with a login portal. Login with credentials Test and password CC3Demo and Context Luce. Once logged in, click the Reporting link at the top of the page. Notice that it is a javascript call that inserts the servers private IP address (172.16.1.5) and the request will timeout with a 404 error.
This is where Apache comes in. I heard through some advice that I should install Apache to use the Reverse Proxy functions. So I did my homework and changed my IIS site binding to port 8080 and installed Apache to port 80.
So I did some searching and initially tried to use the ReWrite rules to rewrite the IP address to the external IP 216.253.206.205 instead of 172.16.1.5. No matter how hard I tried, this did not work.
So then I did some more homework and tried to use the ProxyPass and ProxyPassReverse commands, and it seems to serve my pages when I visit 172.16.1.5/voxco.web instead of 172.16.1.5:8080/voxco.web. So I am thinking the Reverse Proxy is working; however when you click the Reporting link, again it launches the window with a request to the internal server IP.
More digging turned up ProxyHTMLExtended on with ProxyHTMLURLMap commands. I added these to the config file and voila, it rewrote the ip address from the javascript window. The problem is that it works TOO good. It is now rewriting the IP address even on internal requests to the 172.16.1.5/voxco.web and clicking reporting will now try to open the page 216.253.206.205 which will ultimately timeout.
I am at a loss and desperate for help.
Thanks in advance for your help and advice.