> From: Dan Adams [mailto:[EMAIL PROTECTED] > Subject: Response already committed > > I'm getting a problem that appears to occur randomly. If I request the > same page in my webapp over and over most of the time it will come up > fine but sometimes tomcat won't return anything and I'll get a blank > page and this error in the log: > > Oct 3, 2006 4:20:22 PM org.apache.jk.core.MsgContext action > INFO: Response already committed
Any chance that the logic in your servlet is not thread-safe? Repeatedly submitting requests could get more than one going at the same time, causing improperly scoped variables to be overwritten. For example, is request-specific data being stored in the session? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]