Opa 
COnfigurei o Tomcat 6 no Europa, mas não consigo subir nenhum projeto pro Tomcat. Eu aperto em Run On Server e ele diz que a página não existe. Alguém sabe me dizer o que é necessário fazer para mandar o projeto pro tomcat?
[]'s
Opa 
COnfigurei o Tomcat 6 no Europa, mas não consigo subir nenhum projeto pro Tomcat. Eu aperto em Run On Server e ele diz que a página não existe. Alguém sabe me dizer o que é necessário fazer para mandar o projeto pro tomcat?
[]'s
Isso ocorre no borwser interno no Eclipse ? Você tentou acessar via Firefox ou IE ?
Pergunto pq isso jáocorreu comigo, eu mandava rodar a aplicação ai abria o browser do eclipse dando o erro 404. Ai eu abria num browser externo, tipo IE, e rodou normalmente.
Tentei externamente e não funcionou tb, alguma idéia?
[]'s
Tentei externamente e não funcionou tb, alguma idéia?[]'s
Verifique seu web.xml se não tem alguma coisa de errada com ele.
Tentei externamente e não funcionou tb, alguma idéia?[]'s
Verifique seu web.xml se não tem alguma coisa de errada com ele.
Não tem nada de errado amigo:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>Teste Struts</display-name>
<!-- Action Servlet -->
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>definitions-config</param-name>
<param-value>/WEB-INF/tiles-defs.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>validate</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<!-- Mapeamento Padrao -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<!-- Pagina Inicial -->
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
Olhei o log do meu tomcat e minha aplcaição não está adicionada ao contexto. Sempre usei o MyEclipse, acho que é por isso que to um pouco perdido na configuração rs
Faz um teste, instale o tomcat 5.5.25, configure ele no eclipse e veja de roda a página normalmente.