Galera, o meu projeto JSF estava rodando normalmente, mas quando eu coloquei o
uso de RichFaces e o de JQuery o código não acusou nenhum erro. Mas quando a página
é carregada aparece o seguinte erro:
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: The absolute uri: http://richfaces.ajax4jsf.org/rich cannot be resolved in either web.xml or the jar files deployed with this application
foi entao que coloquei no web.xml as seguintes tags:
<context-param>
<param-name>org.ajax4jsf.SKIN</param-name>
<param-value>blueSky</param-value>
</context-param>
<filter>
<display-name>Ajax4jsf Filter</display-name>
<filter-name>ajax4jsf</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
</filter>
<filter-mapping>
<filter-name>ajax4jsf</filter-name>
<servlet-name>Faces Servlet</servlet-name>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
o problema é que o programa não roda com essas tags (ERRO 404). Tem algum erro nelas,
ou o erro indicado primeiramente se resolve de outra forma???
espero que possam me ajudar…
valeu!!!