Re: Advise on how to hanle url names when using https

2002-12-09 Thread Chris Parker
Others will have suggestions... Before you settle on a solution, look here http://www.javaworld.com/javaworld/jw-02-2002/jw-0215-ssl.html The code they show is old and slightly broken at this point. It took me half a day or so to get it working correctly on my server. BUT, it couldn't be any

RE: Advise on how to hanle url names when using https

2002-12-09 Thread Turner, John
Once you serve content via SSL, further URLs can be relative. There is no requirement that all SSL-based URLs be hardcoded. If you have myApp/whatever.jsp in your content, and the request originated via SSL, the URL will be converted to https://some.server.com/myApp/whatever.jsp on the fly.

Re: Advise on how to hanle url names when using https

2002-12-09 Thread Alexander Wallace
Thankyou! Based on that i made a filter that does pretty much the same thing, based on the resource prefix. The only thing I disliked about it is that it takes all the stuff in the request if post was used and puts them in a parameter list. Again, thanks! On Mon, 2002-12-09 at 15:50, Chris

RE: Advise on how to hanle url names when using https

2002-12-09 Thread Alexander Wallace
Cool, thanks! On Mon, 2002-12-09 at 15:52, Turner, John wrote: Once you serve content via SSL, further URLs can be relative. There is no requirement that all SSL-based URLs be hardcoded. If you have myApp/whatever.jsp in your content, and the request originated via SSL, the URL will be