Re: [OT] Re: Struts2 and display:table tag

2008-04-06 Thread Gabriel Belingueres
Seems you missed to add the Apache Commons Lang library jar file. I have projects running with displaytag 1.1.1 and commons-lang 2.3. (Don't know if the last 2.4 version work though.) Gabriel 2008/4/5, Dave Newton [EMAIL PROTECTED]: --- aum strut [EMAIL PROTECTED] wrote: here is the

[OT] Re: Struts2 and display:table tag

2008-04-05 Thread Dave Newton
--- aum strut [EMAIL PROTECTED] wrote: here is the exception which i am facing java.lang.NoClassDefFoundError: *org/apache/commons/lang/UnhandledException * So what does that exception tell you? (I have very limited internet access today, so I can't look up the requirements for displaytag.

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
yes i have already put the display tag jr file in my lib folder only problem in my opinion is use of %@ taglib uri=http://displaytag.sf.net; prefix=display % tag lib directiveas removing this directive will aslo remove the exception, according to exceptin it is unable to find the class. myself

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread Alberto A. Flores
Please note: java.lang.NoClassDefFoundError: *org/apache/commons/lang/UnhandledException * Indicates the classloader couldn't find a class (which one, you may ask?). Looks like commons.lang couldn't find the UnhandledException class. Please make sure you have all displaytag dependencies. You may

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
i am using my eclipse for the development everything was working ine before i tried to use the display tag On 4/5/08, Alberto A. Flores [EMAIL PROTECTED] wrote: Please note: java.lang.NoClassDefFoundError: *org/apache/commons/lang/UnhandledException * Indicates the classloader couldn't

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread Dave Newton
--- aum strut [EMAIL PROTECTED] wrote: i am using my eclipse for the development everything was working ine before i tried to use the display tag ... The exception is telling you precisely what class is missing; this is a clue as to what may be wrong. Do you have *all* the libraries you need

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread aum strut
thanks dave for the help iwill look in to this and will try to find out the clue On 4/5/08, Dave Newton [EMAIL PROTECTED] wrote: --- aum strut [EMAIL PROTECTED] wrote: i am using my eclipse for the development everything was working ine before i tried to use the display tag ... The

Re: [OT] Re: Struts2 and display:table tag

2008-04-05 Thread Jeromy Evans
arum, Read this *entire* page paying particular attention to point 2 dependencies: http://displaytag.sourceforge.net/11/install.html A ClassNotFoundException always implies you're missing a jar in the classpath. - To