----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

When you say "the web server directs them to..." how exactly does
it do that? By sending a redirect?  If so, don't send the redirect
using a fully justified URL, like so:

        response.sendRedirect( request.getProtocol() + "://foo" );

Instead, send a relative redirect:

        response.sendRedirect( "/foo" );

The browser will interpret this relative to the original host and protocol.

- Fernando

> ----------------------------------------------------------------
> 
> We are configuring our Apache servers to run behind an SSL proxy server.
> The Apache servers will not be ssl.  The trouble is  when the user visits
> https://www.x.com/foo  the web server directs them to 
http://www.x.com/foo/.
The proxy server is only listening to https://www.x.com so the request
fails.   The apache webserver needs to think its running as https but not
actually do any https mojo.

Any hints?





--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search Archives: 
<http://www.mail-archive.com/java-apache-users%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to