Re: [S2] Struts with Web Services

2008-04-05 Thread Dustin S.
We've had great success with CAS. Its pretty trivial to 'cas-ify' a web application and as wes mentioned it is very nice for a single sign on solution. They also have a very active mailing list. On Fri, Apr 4, 2008 at 3:59 PM, Wes Wannemacher [EMAIL PROTECTED] wrote: Production integration

Re: [OT] What do you code today?

2008-04-05 Thread Al Sutton
http://www.enterprise-password-safe.com/ At the moment the code is under a major overhaul to use S2.1 (yes, 2.1) and add some new features, hence my big interest in 2.1 :). Al. - Original Message - From: Ted Husted [EMAIL PROTECTED] To: Struts Users Mailing List

RE: any struts 2 unit testers out there?

2008-04-05 Thread paulbrickell
Yes, I did discuss the pros and cons of them in this post http://www.nabble.com/any-struts-2-unit-testers-out-there--to13437046.html#a16490696 Cheers, Paul B. dkarr wrote: And did you investigate using either of the common Java frameworks for Mock objects, jMock and EasyMock?

Re: any struts 2 unit testers out there?

2008-04-05 Thread paulbrickell
Yeah, I think for the moment I will simply override the getText method. The other solutions do require much more effort. Actually I did not search Jira. Maybe there is already a request. I will take a look. Thanks, Paul B. Laurie Harper wrote: As Ian says, the mock objects supplied by

Struts2 and display:table 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* ArrayListItemTypeBean getItemCodeList() { *return* itemCodeList; } i am trying to use the

Re: Struts2 and display:table 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 is not being

Re: Struts2 and display:table 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

[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

[S2] Date Validation

2008-04-05 Thread Rodrigo Pereira
Hi, how can I validate a datetime picker? I have the following in my validation.xml file: field name=date field-validator type=required message key=errors.date.required/ /field-validator /field but I am getting this error message: 05/04/2008 14:53:41

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: Problem in ObjectFactory.buildResult? OGNLExceptions can halt setting of valid properties

2008-04-05 Thread Guillaume Bilodeau
Hi Aaron, I'm running into a similar problem - I'm using a ServletActionRedirectResult instead of the JSONResult. Were you able to work around this? It seems that it's been fixed in 2.1 (cf issue WW-2170) but it doesn't look like it will reach GA anytime soon. Cheers, GB Aaron Brown-4

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

Re: [S2] Date Validation

2008-04-05 Thread Jeromy Evans
Rodrigo Pereira wrote: Hi, how can I validate a datetime picker? ... SEVERE: Could not parse date java.text.ParseException: Unparseable date: I don't think that's caused by the validation. That error occurs when the DatePicker attempts to set its current value but the value is an

Re: [OT] What do you code today?

2008-04-05 Thread Martin Gainty
Al- Any pointers you can share on porting ? M- - Original Message - From: Al Sutton [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Saturday, April 05, 2008 2:51 AM Subject: Re: [OT] What do you code today? http://www.enterprise-password-safe.com/ At the