alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
<td align="right"> <a href="http://jakarta.apache.org/"> <img src="asf-logo-wide.gif" height="51" width="537" alt="The Apache Software Foundation"/> </a> </td> </tr> </table> <table> <tr> <!-- Table of Contents --> <td valign="top"> <table width="100%" border="1" cellspacing="0" cellpadding="3"> <tr> <th>Administration </tr> <tr> <td class="menu"> <a href="manager/status">Status
<!--
--> <a href="manager/html">Tomcat Manager

  </td> </tr> </table> <br /> <table width="100%" border="1" cellspacing="0" cellpadding="3"> <tr> <th>Documentation </tr> <tr> <td class="menu"> <a href="RELEASE-NOTES.txt">Release Notes
<a href="docs/changelog.html">Change Log
<a href="docs">Tomcat Documentation
    </td> </tr> </table> <br/> <table width="100%" border="1" cellspacing="0" cellpadding="3"> <tr> <th>Tomcat Online </tr> <tr> <td class="menu"> <a href="http://tomcat.apache.org/">Home Page
<a href="http://tomcat.apache.org/faq/">FAQ
<a href="http://tomcat.apache.org/bugreport.html">Bug Database
<a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&bugidtype=include&product=Tomcat+5&cmdtype=doit&order=Importance">Open Bugs
<a href="http://mail-archives.apache.org/mod_mbox/tomcat-users/">Users Mailing List
<a href="http://mail-archives.apache.org/mod_mbox/tomcat-dev/">Developers Mailing List
<a href="irc://irc.freenode.net/#tomcat">IRC
  </td> </tr> </table> <br/> <table width="100%" border="1" cellspacing="0" cellpadding="3"> <tr> <th>Examples </tr> <tr> <td class="menu"> <a href="examples/servlets/">Servlets Examples
<a href="examples/jsp/">JSP Examples
<a href="webdav/">WebDAV capabilities
  </td> </tr> </table> <br/> <table width="100%" border="1" cellspacing="0" cellpadding="3"> <tr> <th>Miscellaneous </tr> <tr> <td class="menu"> <a href="http://java.sun.com/products/jsp">Sun's Java Server Pages Site
<a href="http://java.sun.com/products/servlet">Sun's Servlet Site
  </td> </tr> </table> </td> <td style="width:20px">  <!-- Body --> <td align="left" valign="top"> <p id="congrats">If you're seeing this page via a web browser, it means you've setup Tomcat successfully. Congratulations!

<p>As you may have guessed by now, this is the default Tomcat home page. It can be found on the local filesystem at:

<p class="code">$CATALINA_HOME/webapps/ROOT/index.jsp

<p>where "$CATALINA_HOME" is the root of the Tomcat installation directory. If you're seeing this page, and you don't think you should be, then either you're either a user who has arrived at new installation of Tomcat, or you're an administrator who hasn't got his/her setup quite right. Providing the latter is the case, please refer to the Tomcat Documentation for more detailed setup and administration information than is found in the INSTALL file.

<p>NOTE: For security reasons, using the administration webapp is restricted to users with role "admin". The manager webapp is restricted to users with role "manager".</b> Users are defined in <code>$CATALINA_HOME/conf/tomcat-users.xml.

<p>Included with this release are a host of sample Servlets and JSPs (with associated source code), extensive documentation, and an introductory guide to developing web applications.

<p>Tomcat mailing lists are available at the Tomcat project web site:

<ul> <li>users@tomcat.apache.org for general questions related to configuring and using Tomcat <li>dev@tomcat.apache.org for developers working on Tomcat </ul> <p>Thanks for using Tomcat!

<p id="footer">Powered by Tomcat
  Copyright © 1999-2006 Apache Software Foundation<br/> All Rights Reserved </p> </td> </tr> </table> </body> </html>

Other Tomcat examples (source code examples)

Here is a short list of links related to this Tomcat index.jsp source code file:

Tomcat example source code file (index.jsp)

This example Tomcat source code file (index.jsp) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Tomcat tags/keywords

apache, foundation, license, license, new, see, software, the, the, times, times, tomcat, tomcat, you

The Tomcat index.jsp source code

<!--
  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.
-->
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ page session="false" %>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title><%= application.getServerInfo() %>
    <style type="text/css">
    /*<![CDATA[*/
      body {
          color: #000000;
          background-color: #FFFFFF;
	  font-family: Arial, "Times New Roman", Times, serif;
          margin: 10px 0px;
      }

    img {
       border: none;
    }
    
    a:link, a:visited {
        color: blue
    }

    th {
        font-family: Verdana, "Times New Roman", Times, serif;
        font-size: 110%;
        font-weight: normal;
        font-style: italic;
        background: #D2A41C;
        text-align: left;
    }

    td {
        color: #000000;
	font-family: Arial, Helvetica, sans-serif;
    }
    
    td.menu {
        background: #FFDC75;
    }

    .center {
        text-align: center;
    }

    .code {
        color: #000000;
        font-family: "Courier New", Courier, monospace;
        font-size: 110%;
        margin-left: 2.5em;
    }
    
     #banner {
        margin-bottom: 12px;
     }

     p#congrats {
         margin-top: 0;
         font-weight: bold;
         text-align: center;
     }

     p#footer {
         text-align: right;
         font-size: 80%;
     }
     /*]]>*/
   </style>
</head>

<body>

<!-- Header -->
<table id="banner" width="100%">
    <tr>
      <td align="left" style="width:130px">
        <a href="http://tomcat.apache.org/">
	  <img src="tomcat.gif" height="92" width="130" alt="The Mighty Tomcat - MEOW!"/>
	</a>
      </td>
      <td align="left" valign="top"><%= application.getServerInfo() %>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.