Re: jstl not working when i use a web.xml file

2004-08-19 Thread Helios Alonso
The web.xml has info about your application like the taglibs to use. So, if you put an empty web.xml file the tags you used for your iteration aren't converted to java code and compiled. :-) Maybe if you don't put a web.xml tomcat includes a default one, I don't know (or the IDE you are

RE: jstl not working when i use a web.xml file

2004-08-19 Thread Simon Benzekri
Hello Jeff, Try this as the top line in web.xml file. web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd version=2.4 all other declaraqtions /web-app

RE: jstl not working when i use a web.xml file

2004-08-19 Thread Mark Page
or stick %@ page isELIgnored =false % in your jsp. On Thu, 2004-08-19 at 22:30, Simon Benzekri wrote: Hello Jeff, Try this as the top line in web.xml file. web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: jstl not working when i use a web.xml file

2004-08-19 Thread Jeff Ousley
very cool! that worked...but why? none of other suggestions did. any sort of web.xml seemed to cause the page not to work. but placing this line in allowed it to work. i'm assuming this turns off expression language? On Thu, 19 Aug 2004 23:18:06 +0100, Mark Page [EMAIL PROTECTED] wrote: or stick

Re: jstl not working when i use a web.xml file

2004-08-19 Thread Jeff Ousley
ok...i think i'm clearer now. this thread helped: http://forum.java.sun.com/thread.jsp?forum=45thread=506444 thanks all! On Thu, 19 Aug 2004 17:25:12 -0500, Jeff Ousley [EMAIL PROTECTED] wrote: very cool! that worked...but why? none of other suggestions did. any sort of web.xml seemed to