Session listener redirect

2001-03-06 Thread Ron Quartel
I have created the following session listener class which works but now I want to redirect the client to the start page of the application (index.jsp) if they are trying to enter the application from another page. Easy peasy lemon squeezey in asp using global.asa but at a loss with java. Any

Re: Session listener redirect

2001-03-06 Thread OK Prakasan
on 03/06/2001 05:09:17 PM Please respond to A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] Sent by: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Session listen

Re: Session listener redirect

2001-03-06 Thread Sripada Srinivas
Can you not use response.sendRedirect("index.jsp")?? If you can manage to get the handle for the HttpServletResponse object?? or else, you can include this code in JSP page to get the handle to it. I am not sure I got your problem correct. Regards, Sripada Ron Quartel wrote: I have