Erro: HTTP Status 404

Bom, esta dando esse erro, aparentamente não consegue localizar a pagina, eis os meus codigos
o index.xhtml

[code]<?xml version=“1.0” encoding=“UTF-8” ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml
xmlns:ui=“http://java.sun.com/jsf/facelets
xmlns:h=“http://java.sun.com/jsf/html
xmlns:f=“http://java.sun.com/jsf/core”>
<h:head>

</h:head>
<h:body>
<h:outputText value=“Hello mundo” />
</h:body>
</html>[/code]

o web.xml

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;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_3_0.xsd" id="WebApp_ID" version="3.0"&gt;
  &lt;display-name&gt;teste&lt;/display-name&gt;
  &lt;welcome-file-list&gt;
    &lt;welcome-file&gt;index.html&lt;/welcome-file&gt;
    &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt;
    &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt;
    &lt;welcome-file&gt;default.html&lt;/welcome-file&gt;
    &lt;welcome-file&gt;default.htm&lt;/welcome-file&gt;
    &lt;welcome-file&gt;default.jsp&lt;/welcome-file&gt;
  &lt;/welcome-file-list&gt;
  &lt;servlet&gt;
    &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;
    &lt;servlet-class&gt;javax.faces.webapp.FacesServlet&lt;/servlet-class&gt;
    &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;
  &lt;/servlet&gt;
  &lt;servlet-mapping&gt;
    &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;
    &lt;url-pattern&gt;*.xhtml&lt;/url-pattern&gt;
  &lt;/servlet-mapping&gt;
&lt;/web-app&gt;

alguma dica? Uso o eclipse Juno e o tomcat 7, em ambiente linux debian wheezy.

apenas um teste:

&lt;welcome-file-list&gt; &lt;welcome-file&gt;index.xhtml&lt;/welcome-file&gt; &lt;/welcome-file-list&gt;

funciona?

qual o diretorio da pagina indexxhtml ?

att

[quote=pedruhenrik]apenas um teste:

&lt;welcome-file-list&gt; &lt;welcome-file&gt;index.xhtml&lt;/welcome-file&gt; &lt;/welcome-file-list&gt;

funciona?

qual o diretorio da pagina indexxhtml ?

att[/quote]

Eu retirei essa linha e deu o mesmo erro, o index.xhtml esta no webcontent.

[quote=kmunga][quote=pedruhenrik]apenas um teste:

&lt;welcome-file-list&gt; &lt;welcome-file&gt;index.xhtml&lt;/welcome-file&gt; &lt;/welcome-file-list&gt;

funciona?

qual o diretorio da pagina indexxhtml ?

att[/quote]

Eu retirei essa linha e deu o mesmo erro, o index.xhtml esta no webcontent.[/quote]

retirou ou acrescentou a linha:

&lt;welcome-file&gt;index.xhtml&lt;/welcome-file&gt; 

…???

como esta o seu faces-config.xml ??

att,