>-----Original Message-----
>From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com]
>Sent: Friday, September 11, 2009 11:49 AM
>To: Tomcat Users List
>Subject: RE: 404 Error troubleshooting
>
>> From: Mike Baranski [mailto:list-subscripti...@secmgmt.com]
>> Subject: 404 Error troubleshooting
>>
>> I have a webapp, which shows up in the manager, but gives a 404 error
>> every time I try to access it.
>
>When posting questions, provide some real information:
>
>1) Tomcat version?
>
>2) Any front end on Tomcat, or is it running standalone?
>
>3) JRE/JDK version?
>
>4) Platform you're running on?
>
>5) The URL you're using?
>
>6) Contents of WEB-INF/web.xml?
>
>7) Contents of any <Context> element you have for the webapp?
>
>8) Any errors recorded in the Tomcat logs?
>
>> Can someone let me know how to turn on debugging and see what
>> exactly is going on?
>
>The default Tomcat configuration logs all errors.  Modify
>conf/logging.properties if you want more detail.  However, start by
>enabling the AccessLogValve in conf/server.xml to see what requests
>Tomcat is actually getting.
>
> - Chuck
>

Tomcat 5.5
Linux (FC 7)
JDK 1.6
Standalone

Web.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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>Security Managment Consulting</display-name>

   <servlet>
        <servlet-name>XmlRpcServlet</servlet-name>
 
<servlet-class>org.apache.xmlrpc.webserver.XmlRpcServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>XmlRpcServlet</servlet-name>
        <url-pattern>/xmlrpc-status</url-pattern>
    </servlet-mapping>

</web-app>

Access Log:
127.0.0.1 - - [11/Sep/2009:12:41:25 -0400] "POST /xmlrpc-status/ HTTP/1.0"
404 997


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to