Re: How to find jars not used in the project ??

2008-05-22 Thread Dustin S.
This should help you out: http://www.javalobby.org/java/forums/t100842.html?start=0 On Thu, May 22, 2008 at 2:15 PM, A. Lotfi [EMAIL PROTECTED] wrote: Hi, We have a big struts project, under WEB-INF\lib we have lot of jar files, lot of them are not used in the code, we are using

Re: Clearing form value

2008-04-19 Thread Dustin S.
If your using Spring as the objectFactory then you would need to define your action bean as prototype instead of singleton in your applicationContext.xml for example: bean id=personAction scope=prototype class=some.class.PersonAction/ On Fri, Apr 18, 2008 at 10:59 PM, aum strut [EMAIL PROTECTED]

Re: ParameterAware Arrays

2008-04-18 Thread Dustin S.
] wrote: You can of course set up instance variables in your action class with identical names as the parameters you intend to use. 2008/4/16, Dustin S. [EMAIL PROTECTED]: I noticed the the map for setParameters is String, String[]. If I intend to always only use [0], is there any easy way

ParameterAware Arrays

2008-04-16 Thread Dustin S.
I noticed the the map for setParameters is String, String[]. If I intend to always only use [0], is there any easy way to accomplish this without having to do [0] everytime I get() a parameter from the map? I noticed there is SingleValueMap in webwork for this purpose. Does something exist like

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: Freemarker (old version that struts2 uses) disappearing pages

2008-04-04 Thread Dustin S.
The Maven dependency plugin may be useful to you as well. http://maven.apache.org/plugins/maven-dependency-plugin/index.html , specifically the dependency:tree goal. On Fri, Apr 4, 2008 at 3:27 PM, Laurie Harper [EMAIL PROTECTED] wrote: Jonny Cavell wrote: I use Maven, and if you look at

Re: s:iterator tag help

2008-04-03 Thread Dustin S.
Not sure I understand your question ... but Are you aware of the status attribute in the iterator tag? Something like: s:iterator value=intList status=rowstatus option value=rowstatus.count...etc /s:iterator On Thu, Apr 3, 2008 at 2:54 PM, Musachy Barroso [EMAIL PROTECTED] wrote: I meant