<html>
<head>
<title>HelloJspWorld.jsp</title>
</head>
<body bgcolor="white">
<table border="0">
<tr>
<td>
<h1>HelloJspWorld.jsp Sample Test Application JSP Page</h1>
This is the output of a JSP page.
It displays several useful values from the request we are currently processing.</td>
</tr>
</table>
<p>
<table border="0">
<tr>
<th align="right">Context Path:</th>
<td align="left"><%= request.getContextPath() %></td>
</tr>
<tr>
<th align="right">Path Information:</th>
<td align="left"><%= request.getPathInfo() %></td>
</tr>
<tr>
<th align="right">Query String:</th>
<td align="left"><%= request.getQueryString() %></td>
</tr>
<tr>
<th align="right">Request Method:</th>
<td align="left"><%= request.getMethod() %></td>
</tr>
<tr>
<th align="right">Servlet Path:</th>
<td align="left"><%= request.getServletPath() %></td>
</tr>
</table>
</body>
</html>