This content has been marked as final.
Show 4 replies
-
1. Re: Taglibs newbie question
pedrosacosta Feb 10, 2006 12:22 PM (in response to pedrosacosta)The directory structure that i've in my project is:
/WEB-INF
|
--> /jsp
| |
| ---> JSP files
|-->/tld
| |
| ---> tld files
|-->/lib
|
--->standard.jar
--->jstl.jar -
2. Re: Taglibs newbie question
pedrosacosta Feb 10, 2006 12:24 PM (in response to pedrosacosta)/WEB-INF
|
--> /jsp
|..... |
|......|---> JSP files
|
|-->/tld
|...... |
|.......|---> tld files
|
|-->/lib
........|--->standard.jar
........|--->jstl.jar -
3. Re: Taglibs newbie question
scurd Mar 30, 2006 9:51 PM (in response to pedrosacosta)I ran into the same problem. For me, the problem began when I was forced to create a web.xml for my portlet. My web.xml was using 2.3 instead of version 2.4. Make sure the top of your web.xml file looks like this.
<?xml version="1.0" encoding="ISO-8859-1"?> <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 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
Hope that helps! -
4. Re: Taglibs newbie question
anithakothandapani Jun 11, 2010 10:07 AM (in response to scurd)Thanks steve. Your solution helped me.