On Wed, 15 Jan 2003, Gene Campbell wrote:
> Date: Wed, 15 Jan 2003 12:17:00 -0800 (PST) > From: Gene Campbell <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Migrating from 1.0 to 1.1 ERRORS > > I dropped the new struts.jar and assorted commons jars > and tlds in my app. I'm getting the following error > when tomcat loads the ActionServlet. THE CLASS IS > THERE! It's in the struts.jar. Please help. Is > there a document somewhere discussing migration of > struts 1.0 to 1.1 > The usual cause for this type of thing is to have more than one struts.jar file visible at runtime -- in your webapp, in your container's shared library directory, on the CLASSPATH, or in your Java system extensions directory. You should ensure that only one copy (in your webapp) is visible. Another potential cause in your case -- if you're using Tomcat 3.2.x, you'll need to upgrade. That version has some nasty bugs in its class loader than make Struts 1.1 not work. > thanks - gene > Craig -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

