Fabio, remove the semicolons (;) after the uri from the taglib declarations...

 <%@ taglib uri="http://java.sun.com/jsf/html";; prefix="h"%>
 <%@ taglib uri="http://java.sun.com/jsf/core";; prefix="f"%>
 <%@ taglib uri="http://myfaces.apache.org/extensions";; prefix="x"%>

should be:

<%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/extensions"; prefix="x"%>

Regards,

Bruno

2005/7/21, fabio quimbay <[EMAIL PROTECTED]>:
> Greettings, Dennis ...
> 
> It will leave jars in WEB-INF/lib according to as it describes the
> especficación to it, the truth didn't know it; although I continue
> with the problem of not being able to load tags from a page JSP in
> eclipse 3.1. I have been enough time with this restlessness and not
> yet I have managed to find a solution. Thanks.
> 
> 2005/7/21, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> >
> > Are the jar files from the standard release?
> >
> > If so, remove the myfaces tld files and the taglib elements from the DD.  We
> > don't have to declare TLs anymore.  The new spec mandates that the container
> > to automatically make TLs available ... if they are located in certain
> > places.  Those certain places include inside the manifest of a jar that is
> > inside /WEB-INF/lib , which you have done already by placing the myfaces
> > jars under lib.  I don't think this will help you with eclipse, but it will
> > save you a second post to the list.
> >
> > Dennis Byrne
> >
> 
> 
> --
> fabio quimbay
>

Reply via email to