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