Tomcat Section Index | Page 22
I've installed the JSWDK and it says I've run out of environment space when I try to start the server. How do I increase the amount of environment space under Windows?
The end of your CONFIG.SYS file should include a line like the following:
SHELL=C:COMMAND.COM C: /E:4096 /P
This assumes your COMMAND.COM file is in your root level C: directory and you wish yo...more
How can I debug my servlet?
Hoo boy, that's a tough one.
First off, you should always do your own exception handling. An
uncaught exception can silently kill your servlet, and if you don't
know where to look in the log f...more