bill cao wrote: > I fixed it by adding a 'return' statement after > pageCotext.forward(). > Current process should terminate when forward > statement is executed. I think > this is a bug.
That isn't what the spec says (so it isn't a bug). <spec-quote> Once this method has been called successfully, it is illegal for the calling Thread to attempt to modify the ServletResponse object. Any such attempt to do so, shall result in undefined behavior. Typically, callers immediately return from _jspService(...) after calling this method. </spec-quote> Looks pretty clear to me that it is up to you make sure you return. Mark --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]