Using Tag Library in JSP (for JBoss 4.0 Application Server)
1. in the first line of the JSP file add
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
(or any required tag library)
2. in the deployment descriptor (web.xml), you need to add the following in the <web-app> tag
...
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"
...