|
Tomcat example source code file (401.jsp)
The Tomcat 401.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. --> <% response.setHeader("WWW-Authenticate", "Basic realm=\"Tomcat Manager Application\""); %> <html> <head> <title>401 Unauthorized <style> <!-- BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;font-size:12px;} H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} PRE, TT {border: 1px dotted #525D76} A {color : black;}A.name {color : black;} --> </style> </head> <body> <h1>401 Unauthorized <p> You are not authorized to view this page. If you have not changed any configuration files, please examine the file <tt>conf/tomcat-users.xml in your installation. That file will contain the credentials to let you use this webapp. </p> <p> You will need to add <tt>manager role to the config file listed above. For example: <pre> <role rolename="manager"/> <user username="tomcat" password="s3cret" roles="manager"/> </pre> </p> <p> For more information - please see the <a href="/docs/manager-howto.html">Manager App HOW-TO. </p> </body> </html> Other Tomcat examples (source code examples)Here is a short list of links related to this Tomcat 401.jsp source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.