Re: [OT] Re: Struts2 and 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 ex

Re: [OT] Re: Struts2 and 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 un

Re: [OT] Re: Struts2 and 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 > > ...

Re: [OT] Re: Struts2 and 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 ne

Re: [OT] Re: Struts2 and 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

Re: [OT] Re: Struts2 and 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 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. myse

[OT] Re: Struts2 and 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 display

Re: Struts2 and tag

2008-04-05 Thread aum strut
here is the exception which i am facing java.lang.NoClassDefFoundError: *org/apache/commons/lang/UnhandledException * at java.lang.Class.getDeclaredConstructors0(*Native Method*) at java.lang.Class.privateGetDeclaredConstructors(Unknown Source) at java.lang.Class.getConstructor0(Unknown Source

Re: Struts2 and tag

2008-04-05 Thread Dave Newton
--- aum strut <[EMAIL PROTECTED]> wrote: > i have also imported the displaytag* in my jsp in the following way* > > <%@ taglib uri="http://displaytag.sf.net"; prefix="display" %> > > but on adding this it is giving exception and i will remove this taglib > eveything is working fine yes the data i

Struts2 and tag

2008-04-05 Thread aum strut
Hi All, I want to use display tag for displaying the data i have put the displaytag.jar file in the lib folder. i have an action class which is returnig the required data in an array list * public* ArrayList getItemCodeList() { *return* itemCodeList; } i am trying to use the display table tag