| [66] | 1 | <html><body><pre> | 
|---|
|  | 2 | <html> | 
|---|
|  | 3 | <!-- | 
|---|
|  | 4 | Licensed to the Apache Software Foundation (ASF) under one or more | 
|---|
|  | 5 | contributor license agreements.  See the NOTICE file distributed with | 
|---|
|  | 6 | this work for additional information regarding copyright ownership. | 
|---|
|  | 7 | The ASF licenses this file to You under the Apache License, Version 2.0 | 
|---|
|  | 8 | (the "License"); you may not use this file except in compliance with | 
|---|
|  | 9 | the License.  You may obtain a copy of the License at | 
|---|
|  | 10 |  | 
|---|
|  | 11 | http://www.apache.org/licenses/LICENSE-2.0 | 
|---|
|  | 12 |  | 
|---|
|  | 13 | Unless required by applicable law or agreed to in writing, software | 
|---|
|  | 14 | distributed under the License is distributed on an "AS IS" BASIS, | 
|---|
|  | 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|---|
|  | 16 | See the License for the specific language governing permissions and | 
|---|
|  | 17 | limitations under the License. | 
|---|
|  | 18 | --> | 
|---|
|  | 19 |  | 
|---|
|  | 20 | <body bgcolor="white"> | 
|---|
|  | 21 | <h1> Request Information </h1> | 
|---|
|  | 22 | <font size="4"> | 
|---|
|  | 23 | JSP Request Method: <%= util.HTMLFilter.filter(request.getMethod()) %> | 
|---|
|  | 24 | <br> | 
|---|
|  | 25 | Request URI: <%= util.HTMLFilter.filter(request.getRequestURI()) %> | 
|---|
|  | 26 | <br> | 
|---|
|  | 27 | Request Protocol: <%= util.HTMLFilter.filter(request.getProtocol()) %> | 
|---|
|  | 28 | <br> | 
|---|
|  | 29 | Servlet path: <%= util.HTMLFilter.filter(request.getServletPath()) %> | 
|---|
|  | 30 | <br> | 
|---|
|  | 31 | Path info: <%= util.HTMLFilter.filter(request.getPathInfo()) %> | 
|---|
|  | 32 | <br> | 
|---|
|  | 33 | Query string: <%= util.HTMLFilter.filter(request.getQueryString()) %> | 
|---|
|  | 34 | <br> | 
|---|
|  | 35 | Content length: <%= request.getContentLength() %> | 
|---|
|  | 36 | <br> | 
|---|
|  | 37 | Content type: <%= util.HTMLFilter.filter(request.getContentType()) %> | 
|---|
|  | 38 | <br> | 
|---|
|  | 39 | Server name: <%= util.HTMLFilter.filter(request.getServerName()) %> | 
|---|
|  | 40 | <br> | 
|---|
|  | 41 | Server port: <%= request.getServerPort() %> | 
|---|
|  | 42 | <br> | 
|---|
|  | 43 | Remote user: <%= util.HTMLFilter.filter(request.getRemoteUser()) %> | 
|---|
|  | 44 | <br> | 
|---|
|  | 45 | Remote address: <%= util.HTMLFilter.filter(request.getRemoteAddr()) %> | 
|---|
|  | 46 | <br> | 
|---|
|  | 47 | Remote host: <%= util.HTMLFilter.filter(request.getRemoteHost()) %> | 
|---|
|  | 48 | <br> | 
|---|
|  | 49 | Authorization scheme: <%= util.HTMLFilter.filter(request.getAuthType()) %> | 
|---|
|  | 50 | <br> | 
|---|
|  | 51 | Locale: <%= request.getLocale() %> | 
|---|
|  | 52 | <hr> | 
|---|
|  | 53 | The browser you are using is | 
|---|
|  | 54 | <%= util.HTMLFilter.filter(request.getHeader("User-Agent")) %> | 
|---|
|  | 55 | <hr> | 
|---|
|  | 56 | </font> | 
|---|
|  | 57 | </body> | 
|---|
|  | 58 | </html> | 
|---|
|  | 59 | </pre></body></html> | 
|---|