Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Yucca Nel
Either that classis part of a lib that must be included in your WEB-INF/lib or in your $CATALINA_HOME/lib directory or it needs to be included in your zipped up web app(.war). -Original Message- From: Brian Braun Sent: Thursday, May 19, 2011 5:16 PM To: Tomcat Users List Subject:

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Brian Braun
I did. On Thu, May 19, 2011 at 10:24 AM, Yucca Nel yucca...@live.co.za wrote: Either that classis part of a lib that must be included in your WEB-INF/lib or in your $CATALINA_HOME/lib directory or it needs to be included in your zipped up web app(.war). -Original Message- From:

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Mark Thomas
On 19/05/2011 16:26, Brian Braun wrote: I did. Isn't there a jstl-api-1.2.jar you need as well? Mark On Thu, May 19, 2011 at 10:24 AM, Yucca Nel yucca...@live.co.za wrote: Either that classis part of a lib that must be included in your WEB-INF/lib or in your $CATALINA_HOME/lib directory

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Brian Braun
Hi Mark, Do I also need to deploy that file? On Thu, May 19, 2011 at 10:28 AM, Mark Thomas ma...@apache.org wrote: On 19/05/2011 16:26, Brian Braun wrote: I did. Isn't there a jstl-api-1.2.jar you need as well? Mark On Thu, May 19, 2011 at 10:24 AM, Yucca Nel yucca...@live.co.za

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Mark Thomas
On 19/05/2011 16:30, Brian Braun wrote: Hi Mark, Do I also need to deploy that file? Almost certainly since that is where I would expect to find the missing class. Mark On Thu, May 19, 2011 at 10:28 AM, Mark Thomas ma...@apache.org wrote: On 19/05/2011 16:26, Brian Braun wrote: I

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Brian Braun
Thanks Mark, that was the problem! Now it runs. I'm starting to think that you know more about java than I do ;-) On Thu, May 19, 2011 at 10:33 AM, Mark Thomas ma...@apache.org wrote: On 19/05/2011 16:30, Brian Braun wrote: Hi Mark, Do I also need to deploy that file? Almost

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Brian Braun
I think I just understood what was the problem: The file that was missing contains all the intarfaces and abstract classes that declare what needs to be implemented, and the other file (that comes from Apache) implements it. I just downloaded the second file in the beginning. On Thu, May 19,

Re: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag

2011-05-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian, On 5/19/2011 12:02 PM, Brian Braun wrote: I think I just understood what was the problem: The file that was missing contains all the intarfaces and abstract classes that declare what needs to be implemented, and the other file (that comes