Re: Mixing secure non-secure pages in the same application

2001-02-20 Thread Aniket V U
hi, The solution we are using in our application is to have two instances of the application running, on in secure mode and another in unsecure mode. Whenever we want to access the secure pages, we simply redirect to the secure application and vice versa. There is no session problem either

Mixing secure non-secure pages in the same application

2001-02-19 Thread Thomas Pridham
I have jumped through the Verisign hoops and have installed my certificate. Here is my issue: How do you serve both secure and non-secure pages from the same application Right now, my entire application is secure and served from port 443. If someone types in the URL, the server does not

Re: Mixing secure non-secure pages in the same application

2001-02-19 Thread Matt Bauer
In ${orion_home}/default-web-app make an index.html that redirect to port 443 that should do it. Matt Thomas Pridham wrote: I have jumped through the Verisign hoops and have installed my certificate. Here is my issue: How do you serve both secure and non-secure pages from the same

Re: Mixing secure non-secure pages in the same application

2001-02-19 Thread Mark Bernardinis
That solution doesn't get around having multiple pages secure and some non secure though. Ibelieve you need to use URL redirection within your servlets and that should work. It would be good if we could do something similar to Apache with the .htaccess files as that is how I have worked this