var body="Host: " + theRequest.header("Host");
body += "<br />Header keys: ";
body += theRequest.headerKeys();
body += "<br />Get keys: ";
body += theRequest.GETkeys();
body += "<br />Post keys: ";
body += theRequest.POSTkeys();
body += "<br />unparsedUri: ";
body += theRequest.unparsedUri();
body += theRequest.uri();
body += "<br />pathInfo: ";
body += theRequest.pathInfo();
body += theRequest.GET("r");
body += "<br />method: ";
body += theRequest.method();
theResponse.setBody( body );
theResponse.setContentType( "text/html" );