Eddie Fahy wrote:
Hi,
  I have a strange problem. I am not able to access my servlet from internet 
although everything works very well when i access mywebapp using 
http://localhost/mywebapp/Servletx

I am running a webapp which has a servlet. When I try to run my webapp, all the JSPs work good but the 
servlet is "not found". If I try to access the application from 
"http://localhost/mywebapp/Servletx"; everything including the servlet, etc. is working perfect. But 
when I try to access my webapp via internet, everything works, but servlet doesnt' work. I get "404 Not 
Found" error message. I checked chmod of the files, they all are in good shape.
My web.xml is very small and simple (pasted below). Can anyone tell me what 
could be the reason that outside world cannot access my servlet?

More precise error message:
"Not Found

The requested URL /mywebapp/Search was not found on this server.
Apache/2.0.53 (Unix) mod_ssl/2.0.53 OpenSSL/0.9.7a PHP/5.0.3 mod_jk/1.2.9  Server at 
x.x.x.x  Port 80"

Thanks,
Eddie.

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"; versionfiltered="2.4"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
         xsi:schemaLocationfiltered="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>
<servlet>
    <servlet-name>Search</servlet-name>
    <servlet-class>test.HelloServlet</servlet-class>
  </servlet>
<servlet-mapping>
    <servlet-name>Search</servlet-name>
    <url-pattern>/Search</url-pattern>
  </servlet-mapping>
</web-app>
                
---------------------------------
Do you Yahoo!?
 Everyone is raving about the  all-new Yahoo! Mail.
In deployment mode, do you use Apache (or any other server in that matter) at the front end? If so, you will have to program mod_jk (or any other connector you use) to forward all requests meant for the webapp, from Apache to Tomcat.

Santosh.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to