I'm working on an application that does redirects to itself.  The
application is intended to run under https for all pages.  However,
when the redirect is requested, the resulting URL shown in the browser
is http://secureServer/correctDomain/correctPage.jsp   This request
times out because there is no http listener at secureServer.  However,
requests directly to a jsp file in that application via https do not
get changed to http and work just fine.  So the issue only happens
during internal redirects.  Could this be cert related?  Apache or
Tomcat config issue?

Our setup is as follows...
JDK 1.6.06
Tomcat 5.5.15
AJP1.3
Big IP is providing https with a certificate supplied by Verisign
Host file on the tomcat server that points all calls to secureServer
to the IP Address for Big IP.  Big IP is configured to point back to
tomcat on port 80


############### AJP Configuration #####################
<!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
               enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />

############### workers.properties configuration #################
worker.worker_aat.type=ajp13
worker.worker_aat.host=localhost
worker.worker_aat.port=8009

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to