what's the error in taglib?
Hi guys,
i've builded the FileUpload example of Ajax for testing it in eclipse.
The problem is that it not run because eclipse find this problem in web.xml
Multiple annotations found at this line and indicates
<taglib>
<taglib-uri>/tags/taglib</taglib-uri>
<taglib-location>/WEB-INF/taglib.tld</taglib-location>
</taglib>
How can i solve this problem?
I post web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 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">
<display-name>Ajax Upload Component</display-name>
<filter>
<filter-name>UploadMultipartFilter</filter-name>
<filter-class>upload.UploadMultipartFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>UploadMultipartFilter</filter-name>
<url-pattern>*.jspx</url-pattern>
</filter-mapping>
<!-- Faces Servlet -->
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jspx</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<taglib>
<taglib-uri>/tags/taglib</taglib-uri>
<taglib-location>/WEB-INF/taglib.tld</taglib-location>
</taglib>
</web-app>
the taglib-location is corrected....what have i do?
Please help me..........
i'm not expert of web.xml....

