Prezados, minha dúvida é simples.
Estou tentando criar e acessar um servlet usando o Tomcat + Eclipse. Seguindo os tutoriais, criei o servlet e modifiquei o web.xml para que ele reconhecesse o servlet. Porém quando tento acessar o endereço, dá erro de arquivo não encontrado. Abaixo seguem os códigos:
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>ProjectTeste</display-name>
<servlet>
<description></description>
<display-name>Teste</display-name>
<servlet-name>Teste</servlet-name>
<servlet-class>test.Teste</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Teste</servlet-name>
<url-pattern>/Teste</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
Estrutura dos arquivos

Tentei acessar pelos seguintes endereços:
http://localhost:8080/ProjectTeste/Teste
http://localhost:8080/ProjectTeste/Teste/Teste
http://localhost:8080/ProjectTeste/src/Teste
E nenhum deu certo. O erro que dá é:
Existe algum erro no xml ?