Hi,
I couldn't locate the Ping Servlet, but did get one very close to it
called the UpperBound Servlet, which is attached. I haven't tried it.
Roy
--
Roy Wilson
E-mail: [EMAIL PROTECTED]
Title: UpperBound
public class UpperBound extends HttpServlet {
static final String msg = "\n" +
"\n" +
"\n" +
"
UpperBound
\n" +
"\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]