Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGreg Wilkins2014-05-12 11:20:37 +0000
committerGreg Wilkins2014-05-12 11:20:37 +0000
commit03eff51a2502aa91f6e93fc83cbea4df6770fd60 (patch)
tree168ab0bcc56f95e7ea6b44dbce4ffc28ba6db410 /tests
parente4d6768901acb7df3ae2f9c75fe0aff6ba79e18b (diff)
downloadorg.eclipse.jetty.project-03eff51a2502aa91f6e93fc83cbea4df6770fd60.tar.gz
org.eclipse.jetty.project-03eff51a2502aa91f6e93fc83cbea4df6770fd60.tar.xz
org.eclipse.jetty.project-03eff51a2502aa91f6e93fc83cbea4df6770fd60.zip
dispatch test with query and post
Diffstat (limited to 'tests')
-rw-r--r--tests/test-webapps/test-dispatch-webapp/src/main/webapp/index.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test-webapps/test-dispatch-webapp/src/main/webapp/index.html b/tests/test-webapps/test-dispatch-webapp/src/main/webapp/index.html
index a54062ddb8..ae423fccbf 100644
--- a/tests/test-webapps/test-dispatch-webapp/src/main/webapp/index.html
+++ b/tests/test-webapps/test-dispatch-webapp/src/main/webapp/index.html
@@ -28,6 +28,16 @@
<li><form action="include/include/info" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="include/include/info"></form></li>
</ul>
</p>
+<h1>Request Dispatching Query Form POST Tests</h1>
+<p><ul>
+<li><form action="forward/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="forward/info"></form></li>
+<li><form action="include/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="include/info"></form></li>
+<li><form action="forward/forward/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="forward/forward/info"></form></li>
+<li><form action="forward/include/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="forward/include/info"></form></li>
+<li><form action="include/forward/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="include/forward/info"></form></li>
+<li><form action="include/include/info?depth=-1&p0=X&q=0" method="POST"><input type="hidden" name="depth" value="0"><input type="hidden" name="p0" value="A"><input type="submit" value="include/include/info"></form></li>
+</ul>
+</p>
<center>
<hr/>

Back to the top