// marked as expired
super(PageMap.forName("demoRequestResponse"));
Form form = new Form("form");
add(form);
form.add(new HiddenField("url", new PropertyModel(model, "requestUrl")));
form.add(new TextArea("body", new PropertyModel(model, "requestBody")));
form.add(new HiddenField("username", new PropertyModel(model, "userName")));
form.add(new HiddenField("password", new PropertyModel(model, "password")));
// override the action property of the form to submit to the TestWfsPost
// servlet
form.add(new SimpleAttributeModifier("action", "../TestWfsPost"));