}
private void prompt(final HttpServletResponse response, final String user, final String password,
final String message) throws IOException {
response.setContentType("text/html");
final HtmlComponentFactory factory = new HtmlComponentFactory();
final LogonFormPage page = factory.createLogonPage(user, password);
page.write(response.getWriter());
}