HTTP Status 500

HTTP Status 500 -

type Exception report

message

descriptionThe server encountered an internal error () that prevented it from fulfilling this request.

exception
org.apache.jasper.JasperException: java.lang.RuntimeException: Cannot find FacesContext

root cause
java.lang.RuntimeException: Cannot find FacesContext

note The full stack traces of the exception and its root causes are available in the Sun Java System Application Server 9.1_02 logs.

Sun Java System Application Server 9.1_02

** Estou com este problema. Gostaria de uma ajuda com o mesmo.

NetBeans 6.5
Tomcat 6.0 - porta:8079
GlassFish V2

Obrigado por qualquer ajuda

Juan Gonzales Torres

CARA esse erro pode ser por 500 gazilhoes de possibilidades

mas como está a dizer cannot find FacesContext, eu vo fazer umas adivinhações aqui:

1 Vc está usando jsf
2 Vc está acessando uma url que vai dar numa jsp ou num XHTML
3 Em algum lugar no seu web.xml vc tem uma tag assim:

<context-param>
		<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
		<param-value>.xhtml</param-value>
	</context-param>

e outra assim:

	<servlet-mapping>
		<servlet-name>Faces Servlet</servlet-name>
		<url-pattern>*.jsf</url-pattern>
	</servlet-mapping>

se for isso a url tem que ser assim:

http://host:port/seuprojectoweb/suapagina.jsf

se nao for entao peloamordedeus manda algum codigo pra gente dar uma olhada

valeu

Boa noite. Pelo q pesquise realmente tem muitas variaveis. Agradeço a resposta. Então vamos lá:

  • NetBeans 6.5
  • GlassFish V2ur2
  • JavaEE 5

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>com.sun.faces.verifyObjects</param-name>
        <param-value>false</param-value>
    </context-param>
    <context-param>
        <param-name>com.sun.faces.validateXml</param-name>
        <param-value>true</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</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>welcomeJSF.jsp</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>

Muito obrigado

sorte.

certeza que voce nao esta acessando a URL do .jsp em vez de .jsf?

e posta a stacktrace completa que aparece no log!

cara acessa a sua pagina assim

http://localhost:suaporta/seuprojeto/suapagina.faces

flw

Vitenho obrigado. Consegui assim:

http://localhost:8079/TheFirstJavaEEApp-war/welcomeJSF.faces

Mas quando no NetBeans - EXECUTAR[F6] ele manda para o browser

http://localhost:8079/TheFirstJavaEEApp-war/

** Poderia me tirar uma duvida sobre onde configura para abrir, fiz assim:

- Propriedades do Projeto > Executar > Informação do modulo Web > URL relativa: /welcomeJSF.faces

** Gostaria de saber se desta maneira é o certo ou devo proceder de outra forma.

Muito obrigado

index.html

e no teu index.html