Re: [S2] How to apply form based security in struts 2 application

2009-02-07 Thread alee amin
thanks ..alee http://techboard.wordpress.com On Thu, Feb 5, 2009 at 6:25 AM, dusty wrote: > > +1 Spring Security. Everything else is for wimps. > > > > Wes Wannemacher wrote: > > > > On Wednesday 04 February 2009 05:56:24 alee amin wrote: > >> I browsed through struts official site to check f

Re: How to use "s:include" param in s:if

2009-02-07 Thread Struts Two
I was trying to avoid <% if() ...%> in my jsps by using request Object and since I am not using JSTL in favor of struts 2 tags, tag is not possible. I have managed to get around the problem with a less favorable approach. My now looks like: and in my tabs.jsp I have s

struts2 rest plugin

2009-02-07 Thread Andy
Can this plugin re-write the urls generated by struts2 jsp tags to be more rest/rubyonrails-like? ex. ?user=123 --> /user/123 The plugin doesn't appear to be regex-based, is that correct? I'm trying to decide if I am going to use the rest plugin or http://tuckey.org/urlrewrite. Thanks

Re: [ANN] "Ajax on Struts 2" Training at ApacheCon Europe

2009-02-07 Thread ChadDavis
> Its good to hear... Is there any possibility of getting video of the session > or the presentations.. this will be useful for the developers who are not > able to come to the conference, at least for the developers in other > countries... They don't publish the trainings like that. I'm not sure

RE: Can I use a Parameter in result definition?

2009-02-07 Thread Griffith, Michael *
Dave, Thanks for the reply, and the suggestion~ Cheers! MG -Original Message- From: Dale Newfield [mailto:d...@newfield.org] Sent: Friday, February 06, 2009 5:23 PM To: Struts Users Mailing List Subject: Re: Can I use a Parameter in result definition? Griffith, Michael * wrote: > Coo

Problem with Jboss 4.2.3.GA and convention plug-in 2.1.6

2009-02-07 Thread Jerome ROBERT
Hi to all, I try to deploy a struts2 application, using convention plug-in in JBoss 4.2.3.GA. All I get is a weird error (see below) and the weidest thing about it is that all i have to do to get this error is to drop de convention plug-in into a working struts2 application. I got the stack trace b

Re: Problem with Jboss 4.2.3.GA and convention plug-in 2.1.6

2009-02-07 Thread Musachy Barroso
The convention plugin found a class that it thinks is an action, and it is trying to load it, and failing in the process. Setting the debug level to debug should give you more information on what class it is etc. musachy On Sat, Feb 7, 2009 at 4:50 PM, Jerome ROBERT wrote: > Hi to all, > I try t

VS: Form Submit & Passing Post Data to Action with JSON Plugin

2009-02-07 Thread Christer Gjerstad
> Hi, > > I have a page with some seach criteria for the user to specify. The result > of the search will be displayed on another page which will be rendered > using Dojo script and Json result, using the JSON plugin. > > In the book "Practical Apache Struts2 Web 2.0 projects" written by Ian

How to initialize a List property through action configuration

2009-02-07 Thread Struts Two
If I have a property such as private List myList; Is there a way that I can initialize the list through action configuration? I have tried the following: #action name="queueContent" class="ccol.action.queue.QueueRead" method="getMyQueueContent"# #param name="myList"#

Re: trouble deploying struts2 app to tomcat 1.5.0.05

2009-02-07 Thread Dave Newton
I'd try to run it with a more recent HP-UX JVM and I'd look for known issues with the HP-UX JVM. Dave Wick, Dan wrote: Ok, to make the problem more simplified...I took the struts2-blank-2.0.12.war application & deployed it to my local tomcat. That works. Took the same war & deployed it to my

Re: How to initialize a List property through action configuration

2009-02-07 Thread Dave Newton
Please send brand new messages when starting new threads, otherwise the new threads are deeply embedded in existing, different threads. http://i43.tinypic.com/3326m44.png Dave Struts Two wrote: If I have a property such as private List myList; Is there a way that I can initialize

RE: How to initialize a List property through action configuration

2009-02-07 Thread Martin Gainty
any objections to allocating on the stack ? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not end

Re: [S2][Convention] how to intercept all my actions

2009-02-07 Thread caopeng...@foxmail.com
Thanks very much! I'm looking for the solution for a long time, Thanks for your help!