> what is the significane of the exceptions coming from jserv as opposed to my
> code as they used to before i upped the memory ? (from default 16m)
nothing really. essentially, the jvm tries execute some code and it is
failing because it doesn't have enough stack space within its process to
execute the code. it just happened that this time, it was within jserv
instead of your code.
although, one idea that i just had is this...imagine that the jvm executes
jserv...jserv then executes your servlet code (we are still in the same jvm
here, we are just within different points of the execute phase). if the OOM
exception is within your code, it could potentially mean that your code has
a memory leak because the jvm has run out of stack space in your code and
not within the jserv code.
-jon
----------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
READ THE FAQ!!!! <http://java.apache.org/faq/>
Archives and Other: <http://java.apache.org/main/mail.html/>
Problems?: [EMAIL PROTECTED]