I am currently working on a simple web App project with eclipse.
I use centos server and apache-tomcat-7.0.47.
I have an index.jsp file:
<form action="MyServlet">
   <input type="submit" value="Send" />
</form>
My servlet file MyServlet.java :
package com.srk.pkg;
import java.io.IOException;
import java.io.PrintWriter; 
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
  * Servlet implementation class MyServlet
*/
public class MyServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
    /**
      * @see HttpServlet#HttpServlet()
    */
    public MyServlet() {
       super();
    }
   /**
       * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
   */
     protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        PrintWriter out = response.getWriter();
        out.print("Hello Everybody..");
   }
   /**
    * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
   */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
   }
}
and my web.xml file:
<?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"  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>Example1</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></description>
    <display-name>MyServlet</display-name>
    <servlet-name>MyServlet</servlet-name>
    <servlet-class>com.srk.pkg.MyServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>MyServlet</servlet-name>
    <url-pattern>/MyServlet</url-pattern>
  </servlet-mapping>
</web-app>  
The problem I have is:
I run the web app from eclipse and everything is ok.
 http://localhost:8080/Example1/index.jsp
and
 http://localhost:8080/Example1/MyServlet?
but when i try accessing it from my centos server i get a
HTTP Status 404 - /Example1/WebContent/MyServlet
type Status report
message /Example1/WebContent/MyServlet
description The requested resource is not available.
Can anyone help me??
The links i use:
.....:8080/Example1/WebContent/index.jsp
and
....:8080/Example1/WebContent/MyServlet?
also

 
     
    