Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
771 blopes 1
<%--
2
  Licensed to the Apache Software Foundation (ASF) under one or more
3
  contributor license agreements.  See the NOTICE file distributed with
4
  this work for additional information regarding copyright ownership.
5
  The ASF licenses this file to You under the Apache License, Version 2.0
6
  (the "License"); you may not use this file except in compliance with
7
  the License.  You may obtain a copy of the License at
8
 
9
      http://www.apache.org/licenses/LICENSE-2.0
10
 
11
  Unless required by applicable law or agreed to in writing, software
12
  distributed under the License is distributed on an "AS IS" BASIS,
13
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
  See the License for the specific language governing permissions and
15
  limitations under the License.
16
--%>
17
<%@ page import="org.apache.tomcat.util.security.Escape" session="false"
18
         trimDirectiveWhitespaces="true" %>
19
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
20
<html>
21
 <head>
22
  <title>404 Not found</title>
23
  <style type="text/css">
24
    <!--
25
    BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;font-size:12px;}
26
    H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;}
27
    PRE, TT {border: 1px dotted #525D76}
28
    A {color : black;}A.name {color : black;}
29
    -->
30
  </style>
31
  <link href="<%=request.getContextPath()%>/images/favicon.ico" rel="icon" type="image/x-icon" />
32
 </head>
33
 <body>
34
   <h1>404 Not found</h1>
35
   <p>
36
    The page you tried to access
37
    (<%=Escape.htmlElementContent((String) request.getAttribute(
38
            "javax.servlet.error.request_uri"))%>)
39
    does not exist.
40
   </p>
41
   <p>
42
    The Manager application has been re-structured for Tomcat 7 onwards and some
43
    of URLs have changed. All URLs used to access the Manager application should
44
    now start with one of the following options:
45
   </p>
46
    <ul>
47
      <li><%=request.getContextPath()%>/html for the HTML GUI</li>
48
      <li><%=request.getContextPath()%>/text for the text interface</li>
49
      <li><%=request.getContextPath()%>/jmxproxy for the JMX proxy</li>
50
      <li><%=request.getContextPath()%>/status for the status pages</li>
51
    </ul>
52
   <p>
53
    Note that the URL for the text interface has changed from
54
    &quot;<%=request.getContextPath()%>&quot; to
55
    &quot;<%=request.getContextPath()%>/text&quot;.
56
   </p>
57
   <p>
58
    You probably need to adjust the URL you are using to access the Manager
59
    application. However, there is always a chance you have found a bug in the
60
    Manager application. If you are sure you have found a bug, and that the bug
61
    has not already been reported, please report it to the Apache Tomcat team.
62
   </p>
63
 </body>
64
</html>