> From: Andrew Harvey [mailto:hemispheric-ve...@hotmail.co.uk] > Subject: Why does only one server.xml <Context causing failure > > The advised server.xml line > <Context distributable="true" > </Context> > is causing the following fatal server errors
If you blindly threw the above line into server.xml, I'm surprised Tomcat started at all, since it's a completely invalid use of <Context>. If you added the distributable attribute to the global <Context> in conf/context.xml, you will also have problems, since few if any of the webapps that come with Tomcat are designed to function in a clustered environment. You need to add the distributable attribute to the <Context> elements of *just* the webapps that are to be used in a clustered fashion; clearly, servlets-examples isn't one of those. "Doctor, doctor, it hurts when I do this!" "So stop doing it." And don't put *any* <Context> elements in server.xml; put them where they belong. - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org