Ta sim coloquei um breakpoint e subi o JBoss no debug ele entrou la 
verifica no seu web.xml se a sua extensão reconhecida para faces é .jsf mesmo:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
verifica no seu web.xml se o default suffix está para .xhtml mesmo, ou para .jsp (qualquer coisa posta ele aqui para vermos)
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
Outra coisa, se você quiser fazer o tomcat ler para “server:8080/seuprojeto/” algum arquivo específico, é só você alterar, no web.xml, o parâmetro welcome-file-list
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
Opa evufuji nao tinha essas configuraçoes nao, coloquei mas nao funcionou, vou colocar aqui o web.xml:
[code]<?xml version="1.0" encoding="UTF-8"?>
Everton
[/code]
minha index index.jsp
<jsp:forward page="/pages/Cadastro.jsf"/>
minha Pagina cadastro que eu queria subir:
[code]<
<!--
Replace path to template, title, header and body
with actual data.
-->
<ui:composition template="">
<ui:define name="pageTitle">Title</ui:define>
<ui:define name="pageHeader">Header</ui:define>
<ui:define name="body">
<form jsfc="h:form" id="Form">
<div class = "retangle_top"/>
<h: inputText id = "#{textNome} value = "Nada" />
</form>
</ui:define>
</ui:composition>
[/code]
Em algum lugar você troca o mime type que o server informa ao navegador? Tipo, no seu template tem alguma metatag que fale o formato, algo como isso.
http-equiv="Content-Type" content="text/html; charset=utf-8" />
ou mesmo em algum bean seu.
Eu tirei o “<” do inicio, mas continuo do mesmo jeito, sobre o mime type não sei o que é =[
[quote=evefuji]Em algum lugar você troca o mime type que o server informa ao navegador? Tipo, no seu template tem alguma metatag que fale o formato, algo como isso.
http-equiv="Content-Type" content="text/html; charset=utf-8" />
ou mesmo em algum bean seu.[/quote]
nao tem nao
então defina no seu web.xml os mime types para cada extensão de arquivo:
[code]
doc application/vnd.ms-word dsp text/html gif image/gif htm text/html html text/html jnlp application/x-java-jnlp-file jpeg image/jpeg jpg image/jpeg js application/x-javascript pdf application/pdf [/code](etc... o jsf vc deveria colocar como text/html)coloquei todos, mas ta abrindo a pg pra fazer dl =[
ta gerando no console ao final:
Buildfile: C:\Users\everton\Desktop\eclipse-jee-helios-SR1-win32-x86_64\eclipse\plugins\org.eclipse.jst.server.generic.jboss_1.6.1.v200904151730\buildfiles\jboss323.xml
deploy.j2ee.web:
[jar] Building jar: C:\Users\everton\Documents\web\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\Everton.war
[move] Moving 1 file to C:\Program Files\jboss-5.0.0.CR2-jdk6\jboss-5.0.0.CR2\server\default\deploy
BUILD SUCCESSFUL
Total time: 10 seconds
Ta gerando o deploy normal
Olá.
Lembro de ter passado por esse erro,mas não consegui simular aqui
esse é meu web.xml q funciona:
<?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>projetoBase</display-name>
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config.xml</param-value>
</context-param>
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<param-name>facelets.DEVELOPMENT</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
</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>
<context-param>
<param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
<param-value>com.sun.facelets.FaceletViewHandler</param-value>
</context-param>
<filter>
<display-name>RichFaces Filter</display-name>
<filter-name>richfaces</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
</filter>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
<filter-mapping>
<filter-name>richfaces</filter-name>
<servlet-name>Faces Servlet</servlet-name>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
</web-app>
Mas como vou adaptar seu web.xml com o meu??
por exemplo, esse extension filter aqui esta dando erro na hora do deploy.
<filter-mapping>
<filter-name>extensionsFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
</filter-mapping>
se eu tiro ele fica a pagina pra dl
Vai vendo o que se adapta ou não 
Everton,
Voce conseguiu pegar essa pagina jsp ?
Também estou precisando fazer isso.
Obrigado;
Consegui nao amigo =[, negocio ta feio kkk. Quando digito no browser http://localhost:8080/Everton, abre um dialog pra dl =[
Puts,
Beleza então, eu também estouy tentando aqui, qualquer coisa eu posto para nós =)
Abs
Everton,tu está usando RichFaces?
tem alguma linha mais ou menos assim response.setContentType(“text/html”); em algum constructor do seu bean?
Tenta colocar um metatag no seu template que defina o content type para text/html.
to não rafa.
evefuji eu nem tenho nenhum bean ainda so tenho essa pagina.
to não rafa.
evefuji eu nem tenho nenhum bean ainda so tenho essa pagina.[/quote]
me mostra as libs do teu projeto.
