Re: How to stop the URL comming up?

2003-11-27 Thread BAO RuiXian
Andoni wrote: Hello, I am looking for a way to stop my users bookmarking pages in the site. There is a login screen and they shouldn't even really be let bookmark this. I was given someone's card today an then I went to his site: http://www.xeotrope.net and when I find that as I look around

Re: How to stop the URL comming up?

2003-11-27 Thread Dirk Griesbach
PM Subject: Re: How to stop the URL comming up? Andoni wrote: Hello, I am looking for a way to stop my users bookmarking pages in the site. There is a login screen and they shouldn't even really be let bookmark this. I was given someone's card today an then I went to his site: http

Re: How to stop the URL comming up?

2003-11-27 Thread Andoni
Sorry address of example is http://www.xoetrope.net They are using a single frame for their front page. Very handy. Thanks, Andoni. - Original Message - From: Simone Chiaretta [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, November 27, 2003 11:37 AM

RE: How to stop the URL comming up?

2003-11-27 Thread David Sierra Fernandez
to redirect to the main page if the user tries to get a JSP directly. David Sierra Fernandez -Mensaje original- De: BAO RuiXian [mailto:[EMAIL PROTECTED] Enviado el: jueves, 27 de noviembre de 2003 12:53 Para: Tomcat Users List Asunto: Re: How to stop the URL comming up? Andoni

Re: How to stop the URL comming up?

2003-11-27 Thread John Sidney-Woollett
Try creating a servlet which maps to a bookmark-able URL. Then have the servlet use the RequestDispatcher to forward the request which will generate the page (a JSP usually). The forwarded page is generated in the same request, and the URL won't change. Using this technique you can have the