Re: 1.5.1 vs 1.4.7 RequestDispatcher

2001-05-31 Thread Johan Fredriksson
- Original Message - From: Greg Stickley [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, May 31, 2001 12:19 AM Subject: Re: 1.5.1 vs 1.4.7 RequestDispatcher I had a problem with request.sendRedirect where orion would continue processing the jsp or servlet below

1.5.1 vs 1.4.7 RequestDispatcher

2001-05-30 Thread Kit Cragin
Is there something that changed between 1.5.1 and 1.4.7 that broke my forward() requests? I have a servlet mapped to /start and protected by a role, user, in web.xml. The servlet obtains a RequestDispatcher to /roles/user/index.jsp. This JSP has an iframe that loads /roles/user/content.html.

Re: 1.5.1 vs 1.4.7 RequestDispatcher

2001-05-30 Thread Greg Stickley
I had a problem with request.sendRedirect where orion would continue processing the jsp or servlet below the sendRedirect. It's like it ignored the redirect intirely. I had to put a return; statement imediately following the sendRedirect statement. Maybe this is related. --- Kit Cragin [EMAIL

RE: 1.5.1 vs 1.4.7 RequestDispatcher

2001-05-30 Thread Jeff Schnitzer
without a wrapper to see if it works. Jeff -Original Message- From: Kit Cragin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 11:49 AM To: Orion-Interest Subject: 1.5.1 vs 1.4.7 RequestDispatcher Is there something that changed between 1.5.1 and 1.4.7 that broke my