Re: jsp:forward in tomcat 5.5.25

2007-11-13 Thread itay sahar
hi david thanks for reply, my web.xml include the following declaration: !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd; refer to your advice guess you need to declare the jsp taglib i'm not sure which declaration is

Re: jsp:forward in tomcat 5.5.25

2007-11-13 Thread David Smith
Ok... after some research on your issue, what appears to be happening is there's a library version conflict somewhere. It's really hard to tell where, but I would start by upgrading your libraries where possible -- especially any that might have been compiled against an older jsp-api like

Re: jsp:forward in tomcat 5.5.25

2007-11-13 Thread itay sahar
yeh well i already done it before, (jstl 1.1.0 version _ standard.jar) tomcat 5.5.25 jsp-api.jar is the only jar contain the constractor of the tag jsp:forward !!! my code works fine with servlet.jar (in tomcat 4.1 version). I think i need other alternative to do the forward. (A new way

Re: jsp:forward in tomcat 5.5.25

2007-11-12 Thread David Smith
I'm going to venture a guess you need to declare the jsp taglib at the top of your jsp file. Also you don't need all the html to execute a forward. Only the jsp:forward.../ tag is required w/o all the html ... /html stuff. The client won't see the html anyway. Lastly, you webapp will

jsp:forward in tomcat 5.5.25

2007-11-10 Thread itay sahar
hi all, The tomcat version is 5.5.25 with the default version (binary). contain (jsp-api,jar and servlet-api.jar). Servlet 2.4 support jsp 2.0. My application worked (before) on tomcat 4.1 with jsp 1.2. Now i'm working on tomcat 5.5 as mention. I'm not sure what i need to change!!! my