I had the same error. But I could get out of it by replacing the taglib definitions.
I replaced the below lines <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> with the JBoss supplied tag libraries that were copied to my WEB-INF directory. <%@ taglib uri="/WEB-INF/html_basic.tld" prefix="h" %> <%@ taglib uri="/WEB-INF/jsf_core.tld" prefix="f" %> The error may be caused by some un-intended version issues between these two file sets. Best of luck!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911512#3911512 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911512 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
