Dump Request Servlet

A great deal of information about each request is available to a servlet developer. The Dump servlet has been developed to demonstrate the information available from the javax.servlet.http.HttpServletRequest API. As well as a demonstration, the Dump servlet is an excellent debugging tool.

The Dump servlet has been configured with a few InitParams, so they are visible in all dumps. As this demo site has been configured with the session handler, cookies will be visible in the request headers and parameters. The Dump page has a small form at the bottom, with which you can add form content to the request.

The following links access dump. Also try editing the URL or making it the target of your own forms and links.
/Dump Simple dump.
/Dump/Path/Info Dump with path Info
/Dump/Path/Info?ABC=1&ABC=2%2c3&D=4 Dump with path Info and query content
/Translate/path Dump of a translated request
/Auth/Dump Dump of a path that is authenticated and translated.
Use account "jetty" & password "jetty".
/Path/demo.DUMP Dump triggered by suffix match.
/servlet/com.mortbay.Servlets.Dump/info?a=b Dynamically loaded dump servlet.
/Config Dump of handler configuration.
/cgi-bin/dump CGI Dump script.