rasec_php 0 Denunciar post Postado Abril 9, 2013 Caros amigos sou novato em JAVA estou usando o Eclipse Galileo, embora não tenho muito conhecimento deste programa. Preciso criar uma página XHTML, mas qdo clico com o botão direito - WebContent - New não mostra a opção de página em XHTML Page, somente em HTML Page e mesmo depois de escolher a opção de New XHTML File (1.0 Transitional) dá o seguinte erro: HTTP Status 404 - /FinanceiroWeb/ type Status report message /FinanceiroWeb/ description The requested resource (/FinanceiroWeb/) is not available. Apache Tomcat/6.0.35 Abaixo coloquei o código fonte dos meus arquivos: web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>FinanceiroWeb</display-name> <servlet> <display-name>FacesServlet</display-name> <servlet-name>FacesServlet</servlet-name> <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>FacesServlet</servlet-name> <url-pattern>*.jsf</url-pattern> </servlet-mapping> <context-param> <param-name>javax.faces.PROJECT_STAGE</param-name> <param-value>Development</param-value> </context-param> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> </web-app> oimundo.xhtml <?xml version="1.0" encoding="ISO-8859-1" ?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"> <h:head> <title>Página Inicial</title> </h:head> <h:body> <h:outputText value="Olá Mundo"/> </h:body> </html> Agradeço a quem possa me ajudar. Grato, Renato Compartilhar este post Link para o post Compartilhar em outros sites
shini 318 Denunciar post Postado Abril 9, 2013 veja se o tomcat subiu e se o endereço esta correto. esta seguindo o livro java para web? um de capa branca Compartilhar este post Link para o post Compartilhar em outros sites
rasec_php 0 Denunciar post Postado Abril 12, 2013 Caros amigos Adquiri o Livro Programação p/ a Web - editora: novatec. Estou seguindo todos os passos corretos, mas não entendi o porque do erro mencionado. Não entendi a pergunta de o Tomcat sumiu. Pergunta: onde deve estar instalado ? Grato, Renato Compartilhar este post Link para o post Compartilhar em outros sites
shini 318 Denunciar post Postado Abril 13, 2013 um projeto de jsp vc consegue rodar no tomcat? Compartilhar este post Link para o post Compartilhar em outros sites
rasec_php 0 Denunciar post Postado Abril 14, 2013 projeto em JSP, consigo compilar normalmente. Compartilhar este post Link para o post Compartilhar em outros sites