page.add(new Heading(1, "Dump Servlet"));
Table table= new Table(0).cellPadding(0).cellSpacing(0);
page.add(table);
table.newRow();
table.addHeading("getMethod: ").cell().right();
table.addCell("" + request.getMethod());
table.newRow();
table.addHeading("getContentLength: ").cell().right();
table.addCell(Integer.toString(request.getContentLength()));
table.newRow();
table.addHeading("getContentType: ").cell().right();