Pessoal,
Todos os meus projetos que estou criando e tentando acessar o projeto via browser está apresentando este erro.
Se eu tentar tanto o meu servlet: http://localhost:8080/Clientes/controller
Como meu arquivo index: http://localhost:8080/Clientes/index.html
O meu servidor JBoss está subindo normal e fazendo o deploy corretamente.
Ele apresenta erro: HTTP Status 404 - /Clientes/controller.
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>Clientes</display-name>
<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>
<servlet>
<description>Servlet responsável pelo controle de fluxos da aplicação</description>
<display-name>ServletController</display-name>
<servlet-name>ServletController</servlet-name>
<servlet-class>br.com.teste.vc.ServletController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ServletController</servlet-name>
<url-pattern>/controller</url-pattern>
</servlet-mapping>
</web-app>
Eu trabalho com vários projetos web e tudo que eu já sei até o momento, já usei para resolver o problema e não consigo.