Re: how to keep object from action to action

2007-10-07 Thread Sami Dalouche
Hi, you should take a look at Spring Web Flow (http://www.springframework.org/webflow) and its Struts2 plugin (http://cwiki.apache.org/S2PLUGINS/spring-webflow-plugin.html). Regards, Sami Dalouche Le lundi 08 octobre 2007 à 15:03 +1000, Zoran Avtarovski a écrit : > Action chaining isn't just to

Eclipse Europa 3 plugin for Struts 2.0.9

2007-10-07 Thread naveen472-m
Does any one know plugin that is available for "Eclipse Europa 3" plugin for "Struts 2.0.9". All i am getting are plugins for struts 1. 5, 50, 500, 5000 - Store N number of mails in your inbox. Go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html ---

Re: how to keep object from action to action

2007-10-07 Thread Zoran Avtarovski
Action chaining isn't just to access logic in two separate action classes, but is often necessary when intermediate input is required from the user, for example complex forms which need to be broken down into multiple pages, wizards if you like. Since Struts 1 we have been sticking the user entere

Re: how to keep object from action to action

2007-10-07 Thread Ted Husted
This is usually called "action chaining" * http://struts.apache.org/2.x/docs/action-chaining.html Experience shows that chaining should be used with care. If chaining is overused, an application can turn into "spaghetti code". Be sure to ask yourself why you need to chain from Action1 to Action2

Re: S2: YUI plugin and autocompleter

2007-10-07 Thread Ted Husted
Right. My bad. Thanks. I see how this works now :) On 10/7/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > Did you try typing "A" instead of "a"? It is case sensitive, and it > works for me (with "A") > > musachy - To unsubscrib

Re: S2: YUI plugin and autocompleter

2007-10-07 Thread Musachy Barroso
Did you try typing "A" instead of "a"? It is case sensitive, and it works for me (with "A") musachy On 10/7/07, Ted Husted <[EMAIL PROTECTED]> wrote: > I tried to start with a direct port of what's in the YUI Plugin docs. > Taking out the # didn't seem to change anything. I was working against >

Re: S2: YUI plugin and autocompleter

2007-10-07 Thread Ted Husted
I tried to start with a direct port of what's in the YUI Plugin docs. Taking out the # didn't seem to change anything. I was working against the 2.1.0 SNAPSHOT, but trying it against 2.1.0 didn't seem to make a different. There's 2.1.0-SNAPSHOT WAR here: * http://people.apache.org/~husted/retro.w

Re: S2: YUI plugin and autocompleter

2007-10-07 Thread Ted Husted
Hmmm, against the value stack, which includes the Action, among other things :) We use the syntax without the # in the MailReader, for the localization URLs, and it works just fine. Of course, all this would be much simpler if WW-1517 were resolved :) * https://issues.apache.org/struts/browse/W

Re: Has anyone developed a web app using struts 2 and agegi security framework?

2007-10-07 Thread Sami Dalouche
Hi, I guess that by "integrating acegi and struts 2", you mean, "integrating acegi URL security with struts 2". So, here are some tips... 1] Configure Acegi however you would do it using pure JSP / servlets 2] Create an interceptor using the instructions given here http://struts.apache.org/2.0.9

Re: Defining a controller for Tiles?.. and shouldn't we include a Tiles example app in the release?

2007-10-07 Thread Antonio Petrelli
2007/10/7, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > I'm writing a chapter to compare and contrast T1 and T2. As T2 is the > counterpart to S2, I would expect preparers to participate in object > injection. If they don't, I could see them largely unused T2 is not counterpart of anything, since it

Re: Defining a controller for Tiles?.. and shouldn't we include a Tiles example app in the release?

2007-10-07 Thread stanlick
I'm writing a chapter to compare and contrast T1 and T2. As T2 is the counterpart to S2, I would expect preparers to participate in object injection. If they don't, I could see them largely unused Scott. On 10/7/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > > 2007/10/5, [EMAIL PROTECTED] <[

Re: Defining a controller for Tiles?.. and shouldn't we include a Tiles example app in the release?

2007-10-07 Thread Antonio Petrelli
2007/10/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Has the problem been solved concerning injecting the T2 controllers > (preparers) with beans from the S2 beanFactory? I have written a > DelegatingTilesController that gets the job done, but I consider it a > workaround. Scott, you are writing a

Re: Using annotations

2007-10-07 Thread Zarar Siddiqi
Well, a couple things pop into one's mind: 1. Why are you using the @SkipValidation on the execute() method, this is telling Struts NOT to validate calls to this action. 2. Your action is called teste.do which is a little fishy because usually the extension (.do) doesn't need to be specified in th

Has anyone developed a web app using struts 2 and agegi security framework?

2007-10-07 Thread Tuyen Dinh Van
I am now developing my own management suite using struts 2, and I also intend to use acegi for security, but very few document available for such integration. Has any one successfully integrated the acegi framework into struts 2? Any suggestion is appreciated. Thanks