Hopefully someone will point out the goof up! Thanks much.
Sylvia Allen
Greenhorn
Joined: Apr 02, 2001
Posts: 18
posted
0
I hope this isn't a really dumb answer, but it looks to me as if you have a typo-- <% = Attr1 %> There shouldn't be a space between the % and the =. <%= Attr1 %> Though for all I know, it works just fine with the space there; I've never tried it that way. Somebody just shoot me if this is a clueless answer. - SA
Sylvia Allen<br />sylviaa53@yahoo.com
Craig Jackson
Ranch Hand
Joined: Mar 19, 2002
Posts: 405
posted
0
I believe the problem is that you are getting the RequestDispather from the ServletContext interface. Which implies that the path must begin with a "/", which is interpreted relative to the current context root. rd = getServletContext().getRequestDispatcher("/newJSP.jsp"); This becomes a URL relative to the root of the webapp.
Med Shabe
Ranch Hand
Joined: May 08, 2001
Posts: 84
posted
0
WOW, Moose's eye... both the "/" and the space were the problems. Thank you.
Matthew Phillips
Ranch Hand
Joined: Mar 09, 2001
Posts: 2676
posted
0
Med, For future reference, please refrain from double posting. Thanks.
Matthew Phillips
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.