Meu web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>br.com.caelum.vraptor.encoding</param-name>
<param-value>UTF-8</param-value>
</context-param>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Documente</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<resource-ref>
<res-ref-name>jdbc/intranet</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>bluesky</param-value>
</context-param>
</web-app>
Sempre que executo o projeto recebo esse erro:
HTTP Status 500 -
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: /pgAvaliacao/sucesso_montagemAvaliacao.xhtml @89,87 <p:subTable> Tag Library supports namespace: http://primefaces.prime.com.tr/ui, but no tag was defined for name: subTable
root cause
javax.faces.view.facelets.TagException: /pgAvaliacao/sucesso_montagemAvaliacao.xhtml @89,87 <p:subTable> Tag Library supports namespace: http://primefaces.prime.com.tr/ui, but no tag was defined for name: subTable
note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.0.1 logs.
GlassFish Server Open Source Edition 3.0.1
Na minha pagina tem a declaração: xmlns:p="http://primefaces.prime.com.tr/ui" que ele ta reclamando!
Alguem ja passou por esse tipo erro, e que possa ajuda?!
Ja utilizei todas libs
3.0.M3 primefaces-3.0.M3.jar
3.0.M2 primefaces-3.0.M2.jar
3.0.M1 primefaces-3.0.M1.ja
E o erro continua!

