Re: New to Struts, a Question

2009-08-02 Thread Dave Newton
Dennis Atkinson wrote: I have a follow-up question about this subject (redirecting to an Action class rather than a jsp file). When I do the redirect, and the target is an Action class with validated input fields, when the screen is initially shown, I get "... field is required" messages on ever

Re: New to Struts, a Question

2009-08-02 Thread Dennis Atkinson
the trick to this? Thanks, Dennis From: Dennis Atkinson To: Struts Users Mailing List Sent: Thursday, July 30, 2009 1:18:12 PM Subject: Re: New to Struts, a Question Thanks to all who helped with this - I understand it better now. Dennis _

Re: New to Struts, a Question

2009-07-30 Thread Dennis Atkinson
Thanks to all who helped with this - I understand it better now. Dennis From: Martin Gainty To: Struts Users Mailing List Sent: Thursday, July 30, 2009 8:32:01 AM Subject: RE: New to Struts, a Question in your config files look for default result

RE: New to Struts, a Question

2009-07-30 Thread Martin Gainty
esponsabilité pour le contenu fourni. > Date: Wed, 29 Jul 2009 21:14:24 -0400 > Subject: Re: New to Struts, a Question > From: tomsatt...@gmail.com > To: user@struts.apache.org > > In my struts.xml file, I have the UserDisplayAction class and a blank (no > "name=&q

Re: New to Struts, a Question

2009-07-30 Thread Paweł Wielgus
Hi Thomas, yes it is picking it from there. Empty name is same as name="success". Best greetings, Paweł Wielgus. 2009/7/30 Thomas Sattler : > In my struts.xml file, I have the UserDisplayAction class and a blank (no > "name=") result for userDisplay.jsp.  Does it pick up from there? > > > > On We

Re: New to Struts, a Question

2009-07-29 Thread Thomas Sattler
In my struts.xml file, I have the UserDisplayAction class and a blank (no "name=") result for userDisplay.jsp. Does it pick up from there? On Wed, Jul 29, 2009 at 8:40 PM, Dave Newton wrote: > Dennis Atkinson wrote: > >> Dave, >> >> OK, I can make it work. I just don't understand WHY it wor

Re: New to Struts, a Question

2009-07-29 Thread Dave Newton
Dennis Atkinson wrote: Dave, OK, I can make it work. I just don't understand WHY it works. If I change to this: My Acccount I get exactly what I expect; the screen loads with the data filled in properly. But what I don't understand is how Struts knows to load userDisplay.jsp. I assume it p

Re: New to Struts, a Question

2009-07-29 Thread Dennis Atkinson
09 5:49:04 PM Subject: Re: New to Struts, a Question Dennis Atkinson wrote: > The menu says: > My Acccount > > Can I direct this to an action class, rather than to a jsp file? Action URLs are URLs like any other, including a JSP. Dave --

Re: New to Struts, a Question

2009-07-29 Thread Dave Newton
Dennis Atkinson wrote: The menu says: My Acccount Can I direct this to an action class, rather than to a jsp file? Action URLs are URLs like any other, including a JSP. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.

Re: New to Struts, a Question

2009-07-29 Thread Dennis Atkinson
? From: Burton Rhodes To: Struts Users Mailing List Sent: Wednesday, July 29, 2009 1:13:37 PM Subject: Re: New to Struts, a Question I think you want to investigate an 'actionredirect' on 'success' instead of just displaying the user jsp file. This will 'handoff

Re: New to Struts, a Question

2009-07-29 Thread Burton Rhodes
I think you want to investigate an 'actionredirect' on 'success' instead of just displaying the user jsp file. This will 'handoff' control to your user action. On 7/29/09, Dennis Atkinson wrote: > Hello everyone. > > I am new to Struts2, and I like what I see so far. I want to use it for all > m