Re: forward() question

2001-06-06 Thread Wyn Easton
Yes, you do return from the rd.forward() method call. I always put a "return;" after such a call in my servlets. Since your forward is done in the bean try something like this: <% userChk.setPageInfo(request, response); if(!userChk.IsValid()) return; %> If you are interested, you can loo

RE: forward question

2001-04-05 Thread Grewal, Gary
Title: forward question Try the url in RequestDispatcher as /bill/jsp/userSuccess.jsp assuming you have defined your context bill in server.xml   === Gary Grewal -Original Message-From: William Blackmon [mailto:[EMAIL PROTECTED]]Sent: Wednesday, April 04, 2001 4:48 PMTo: [EMAIL PR

RE: forward question

2001-04-04 Thread Warren Crossing
Title: forward question have a quick look at web application deployment structure it should be something like     www     bill     majicJsp.jsp     WEB-INF     classes     com     wgblackmon     UserProcess   then add a context tag to your serv