Seems to work from my end.
Maybe you've overlooked adding your ecs classpath
(eg. in jserv.properties). I've certainly done that
before.
There was also one instance when JServ just died on me
and restarting the Apache service didn't help. Restarting
the computer fixed that. (Is there a better way to start
JServ on Win NT?)
If that fails and you believe your code is wrong,
try catching the exception that should have been
thrown by your code with something like this:
public void doGet (HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException
{
PrintWriter out;
response.setContentType("text/html");
out = response.getWriter();
try {
// your code
} catch (Throwable t) {
t.printStackTrace(out);
}
}
I find that this sometimes gives a more descriptive
error message.
_______________
John
__________________________________________________
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com
--
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]