Erro jsf

Preciso de ajuda referente ao erro (que está comentado) abaixo.

Valeu.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     
           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">    
 <html xmlns="http://www.w3.org/1999/xhtml"    
     xmlns:ui="http://java.sun.com/jsf/facelets"        // Neste trecho tem o seguinte warning: NSL missing message: CANNOT_FIND_FACELET_TAGLIB in:    
     xmlns:h="http://java.sun.com/jsf/html"              //  org.eclipse.jst.jsf.core.validation.internal.facelet.messages    
     xmlns:f="http://java.sun.com/jsf/core"               // O mesmo erro em: xml:ui, h, f, p    
     xmlns:p="http://primefaces.prime.com.tr/ui">    
     
 <f:view contentType="text/html">    
     <h:head>    
         <title><ui:insert name="title">Default title</ui:insert></title>    
         <link type="text/css" rel="stylesheet"    
             href="#{request.contextPath}/css/blitzer/skin.css" />    
     </h:head>    
     
     <h:body>    
         <p:panel>    
             <h:form>    
     
                 <div id="header"><ui:insert name="header">    
                     <ui:include src="/pages/comum/header.xhtml" />    
                 </ui:insert></div>    
     
     
                 <div id="content"><ui:insert name="content">    
         Content area.  See comments below this line in the source.    
         <!--  include your content file or uncomment the include below and create content.xhtml in this directory -->    
                     <!-- <div> -->    
                     <!-- <ui:include src="content.xhtml"/> -->    
                     <!-- </div> -->    
                 </ui:insert></div>    
     
                 <div id="footer"><ui:insert name="footer">    
         Footer area.  See comments below this line in the source.    
         <!--  include your header file or uncomment the include below and create footer.xhtml in this directory -->    
                     <!--<ui:include src="footer.xhtml"/>  -->    
                 </ui:insert></div>    
             </h:form>    
         </p:panel>    
     </h:body>    
 </f:view>    
 </html>  

Está utilizando o Seam ou Maven?
Se estiver no Eclipse, poderá tentar adicionar novamente as referências e conferir se está tudo correto, no caso do Seam e Maven; talvez isso ajude.

Qual JAR do PrimeFaces vc está usando? Seria o primefaces-3.0.M3-SNAPSHOT

esse erro ainda não descobri o porquê, talvez seja probrema do jar em desenvolvimento do primefaces,
mas tem uma resolução temporária, faça o seguinte:
de um “validate” no projeto e reinicie o Eclipse.

editando a MP…
use o jar do prime: primefaces-3.0.M2
com o jar do jsf: mojarra-2.1.1-FCS

que o warning, desapareçe de vez.

não se esqueça de adicionar estes jar’s tb:
itext 2.1.7;
apache poi 3.2-FINAL;
commons-fileupload 1.2.1;
commons-io 1.4;
atmosphere-runtime 0.5.1;
atmosphere-compat 0.5.1;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
<html xmlns="http://www.w3.org/1999/xhtml"
	xmlns:p="http://primefaces.prime.com.tr/ui"
	xmlns:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head>
	<title></title>
</h:head>
<h:body>

</h:body>
</html>