*** Service (starter) Create ***
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
*** Service (httputils2service) Create ***
** Service (httputils2service) Start **
<!DOCTYPE html>
<html>
<head>
<title>Redirect test page</title>
</head>
<body bgcolor="white">
<p><a href=".."><img src="/icons/jigsaw" alt="Jigsaw" border="0"
width="212" height="49"></a><img src="/icons/jigpower.gif" width=
"94" height="52" alt="Jigsaw Powered !" border="0" align=
"right"></p>
<h1>Redirect test page</h1>
<h1>A set of HTTP/1.1 redirect codes</h1>
<hr>
<table border cellpadding="2">
<tr>
<td><a href="301.html">301 Moved Permanently</a></td>
<td>This links to a page that has moved permanently, your browser
should get back to this page after this link.</td>
</tr>
<tr>
<td><a href="302.html">302 Found</a></td>
<td>This links to a page that has moved permanently, your browser
should get back to this page after this link.<br>
<em>302 Found</em> is ambiguous, you may use 301 or 307
instead</td>
</tr>
<tr>
<td>
<form action="Go_303" method="post"><input type="hidden" name="foo"
value="bar"> <input type="submit" value="303 See Other"></form>
</td>
<td>This form will redirect you to another page that contains the
response to the request.</td>
</tr>
<tr>
<td><a href="307.html">307 Moved Temporarily</a></td>
<td>This links to a page that has moved temporarily, your browser
should get back to this page after this link. This response code is
not cachable, unless specified.</td>
</tr>
<tr>
<td>
<form action="Go_307" method="post"><input type="hidden" name="foo"
value="bar"> <input type="submit" value=
"Redirect to the 303 test"></form></td>
<td>This form will redirect a POST using 307 to the 303 test page.
If the UA redirect as a GET, an error will occur.</td>
response to the request.</td>
</tr>
</table>
</body>
</html>