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>