public class UpperBound extends HttpServlet {
static final String msg = "<html>\n" +
"<head><title>UpperBound</title></head>\n" +
"<body>\n" +
"<h1>UpperBound</h1>\n" +
"</body></html>\n";
static final byte[] bytes = msg.getBytes();
public void service(ServletRequest req, ServletResponse res)
throws ServletException, IOException {
res.getOutputStream().write(bytes);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]