Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache 2.2 as Reverse Proxy for Websphere Issue!

Status
Not open for further replies.

scbonner384

Technical User
May 7, 2003
7
US
Hello all,

Let me start by saying I am a complete newbie and I hope I can state my problem correctly.

I have an apache 22 server running on BSD being utilized as a reverse proxy for access to my internal Websphere instance from the Internet. It works but I am getting a different output on my browser sessions to the Websphere server when going thru it as opposed to going directly to the Websphere server’s hostname from inside my network.

Small Example:
Good:
<INPUT TYPE=text style="COLOR:#393939;BACKGROUND-COLOR:#e5e5e5" ID=TFIELD39 NAME=39 ReadOnly=True value="114850" TABINDEX=-1 onMouseOver=updateHelpCursor() style="width:85px; ">

Broken:
<input type="text" style="COLOR:#393939;BACKGROUND-COLOR:#e5e5e5" id="TFIELD39" name="39" readonly="True" value="114850" tabindex="-1" onmouseover="updateHelpCursor()">

Please note that the very last part of the correct Source Code (ie. style="width:85px) is entirely missing from the Source Code written in the Broken page.

What could possibly be causing this in the Apache Reverse Proxy Server I have now.

There is obviously 100s of other source differences but they are all similar or identical to the above example.

Below is an example of my httpd.conf file for review:

SSLSessionCache "shmcb:/var/run/ssl_scache(512000)"
SSLSessionCacheTimeout 300

<VirtualHost employee.semcoenergy.com:80>
ServerName employee.semcoenergy.com
<Location />
Order deny,allow
Allow from all
Redirect permanent / </Location>
</VirtualHost>

<VirtualHost employee.mycompany.com:443>
ServerName employee.mycompany.com
SSLEngine on
SSLCertificateKeyFile /usr/local/etc/apache22/sslkey/employee.mycompany.com.
key
SSLCertificateFile /usr/local/etc/apache22/sslkey/employee.mycompany.com.crt
ProxyRequests off
RewriteEngine On
RewriteRule ^/$ /jde/servlet/com.jdedwards.portal.PortalBuilderServlet [R]
ProxyPass / timeout=60
SetOutputFilter proxy-html
RequestHeader unset Accept-Encoding
ProxyHTMLURLMap <Location />
Order deny,allow
Allow from all
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLExtended On
ProxyHTMLURLMap </Location>
</VirtualHost>


Thanks very much in advance for any help I may receive,
Scott
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top