Bom dia pessoal
Estou comecando a desenvolver projetos com o JSF e ja me deparei com um erro, estou procurando, mas nao sei mt bem como resolver o problema, esta sendo gerada uma exception, o que eu estou fazendo de errado ?
Segue o erro
Faces context not found. getResponseWriter will fail. Check if the FacesServlet has been initialized at all in your web.xml configuration fileand if you are accessing your jsf-pages through the correct mapping. E.g.: if your FacesServlet is mapped to *.jsf (with the -element), you need to access your pages as ‘sample.jsf’. If you tried to access ‘sample.jsp’, you’d get this error-message.
Abs a todos
Como esta o seu web.xml ???
veja se tem
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
ao inves de .jsf
esta assim:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
Abs
[quote=marsola2k]ao inves de .jsf
esta assim:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
Abs[/quote]
Como vc esta tentando acessar sua página ? se colocou *.faces vc deve acessar usando /index.faces.
Cole o seu web.xml aqui