RE: SSL + URL rewriting problem

2002-02-08 Thread Galbreath, Mark
Port 443 is the default Secure Sockets Layer port, so it is going to the URL you passed. Mark -Original Message- From: Nathan Anderson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 7:00 PM To: [EMAIL PROTECTED] Subject: Re: SSL + URL rewriting problem I have a bit more

Re: SSL + URL rewriting problem

2002-02-08 Thread Max Cooper
with the URL as long as you don't need to switch ports. -Max - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, February 08, 2002 3:45 AM Subject: RE: SSL + URL rewriting problem Port 443 is the default Secure

Re: RE: SSL + URL rewriting problem

2002-02-08 Thread Nathan Anderson
The problem is not that it is speaking on port 443, but that it is using http not https. This is what I think is happening... 1. A request is sent from the client to https://hostname/appname/index.jsp; 2. Apache 1.3.22 recieves this request and verifies the users certificate and keys. 3.

SSL + URL rewriting problem

2002-02-07 Thread Nathan Anderson
Hello all, I've been trying to get my Apache 1.3.22 + Tomcat 4.0.1 [via mod_WebApp] installation to work with SSL. So far I've had some success, but there is one problem left that seems to only effect Struts applications. All my non-struts .JSP's and servlets work without any issues. But

Re: SSL + URL rewriting problem

2002-02-07 Thread Nathan Anderson
I have a bit more information if anyone is interested in helping me with this issue.. I found out that the HttpUtils.getRequestURL(). If I make a JSP with the following scriptlet: %= HttpUtils.getRequestURL(request) % I get this: http://hostname:443/webapp/page.jsp when the actual request

Re: SSL + URL rewriting problem

2002-02-07 Thread Dan Moore
Hi Nathan, On Feb 7, Nathan Anderson wrote: I have a bit more information if anyone is interested in helping me with this issue.. I found out that the HttpUtils.getRequestURL(). If I make a JSP with the following scriptlet: I assume you're talking about javax.servlet.http.HttpUtils here

Re: SSL + URL rewriting problem

2002-02-07 Thread Max Cooper
- Original Message - From: Nathan Anderson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 07, 2002 3:59 PM Subject: Re: SSL + URL rewriting problem I have a bit more information if anyone is interested in helping me with this issue.. I found out that the HttpUtils.getRequestURL

Re: SSL + URL rewriting problem

2002-02-07 Thread Nathan Anderson
Thanks for the info. You are correct that I was referring to javax.servlet.http.HttpUtils. So I tried it using the object [request.getRequestURL], and I got the exact same thing. I guess this is not a Struts issue, so I'll keep looking. Nathan Anderson -- Sent via jApache.org -- To