Re: [SATURDAY] *sigh*

2005-08-06 Thread Simon Chappell
A true geek is never off-duty! :-) On 8/6/05, Jason Lea <[EMAIL PROTECTED]> wrote: > I am at home! and it's Sunday! (in New Zealand :) ) > > Dave Newton wrote: > > >Wait, they let you guys go home on weekends?! > > > >Dave > > > > > > > >-

Re: [SATURDAY] *sigh*

2005-08-06 Thread Jason Lea
I am at home! and it's Sunday! (in New Zealand :) ) Dave Newton wrote: Wait, they let you guys go home on weekends?! Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [SATURDAY] *sigh*

2005-08-06 Thread Dave Newton
David G. Friedman wrote: If we went away on Saturdays, it would be the 'Strut' group, not the 'Struts' group. :) Whew, I feel so much... uh... better now that I know I'm not the only lucky one. Dave - To unsubscribe, e-

RE: [SATURDAY] *sigh*

2005-08-06 Thread David G. Friedman
If we went away on Saturdays, it would be the 'Strut' group, not the 'Struts' group. :) Regards, David -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Saturday, August 06, 2005 3:39 PM To: Struts Users Mailing List Subject: [SATURDAY] *sigh* Wait, they let you guys

Re: [SATURDAY] *sigh*

2005-08-06 Thread Leon Rosenberg
Dreamer! > -Ursprüngliche Nachricht- > Von: Dave Newton [mailto:[EMAIL PROTECTED] > Gesendet: Samstag, 6. August 2005 21:39 > An: Struts Users Mailing List > Betreff: [SATURDAY] *sigh* > > Wait, they let you guys go home on weekends?! > > Dave > > > > --

[SATURDAY] *sigh*

2005-08-06 Thread Dave Newton
Wait, they let you guys go home on weekends?! Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using XHTML and no form name tag

2005-08-06 Thread Niall Pemberton
Titi is correct - this is an issue introduced in Struts 1.2.7 - it is mentioned in the upgrade notes http://wiki.apache.org/struts/StrutsUpgradeNotes124to127 ...but to recap here the change for Bug 34027 caused this problem and it has been reported in Bug 35127 http://issues.apache.org/bugzi

RE: validating form and what then?

2005-08-06 Thread aleiprecht
One more thing ... Why are you not checking the form in your FormClass overriding the validate method... public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { } Rgds albi -Original Message- From: peceka [mailto:[EMAIL P

RE: validating form and what then?

2005-08-06 Thread aleiprecht
Might be because of the scope="request" ? I assume the form is present in loginsubmit, but not in the login-check. There's two things you could do, try to put the form in the session, or handle the checking in the loginsubmit... Rgds albi -Original Message- From: peceka [mailto:[EMAIL PR

validating form and what then?

2005-08-06 Thread peceka
Hi, i've got a problem. i've done in my app an form where user must input login and password then this form is validated and then a want to test if this values are good or bad (LoginCheck.java), but form is null, why? How can I get login and password values and test if they are good? now my app:

RE: Using Tiles as Email Templates

2005-08-06 Thread aleiprecht
LOL... After diving into tiles I too wonder myself WHY all this fuzz ... Velocity is still the best bet for that ;) I was concerned about the memory used to fire up additional stuff. Now I have a central service providing the parsing functionality, keeping only one instance. Mind sometimes goes

Re: Using Tiles as Email Templates

2005-08-06 Thread Larry Meadors
On 8/6/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I still wonder, how one would do it with the standard struts/tiles > combination. Hmm, I wonder WHY? Larry - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

RE: Using Tiles as Email Templates

2005-08-06 Thread aleiprecht
BTW: I went back doing it with Velocity but I still wonder, how one would do it with the standard struts/tiles combination. Rgds albi -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Saturday, August 06, 2005 11:47 AM To: 'Struts Users Mailing List' Subject: Usi

Re: Main class for a struts webapp...

2005-08-06 Thread O. Oke
Noted. I thank you all for your clarification and information. --- Yan Hu <[EMAIL PROTECTED]> wrote: > --- "O. Oke" <[EMAIL PROTECTED]> wrote: > > > Can anyone please tell me where the "main" (public > > static void main...) class of a Strus web > application > > can be found. To put it anot

RE: Using Tiles as Email Templates

2005-08-06 Thread aleiprecht
This is what I meant btw ;) PWRetrievalForm User enters his answer to the secret PWRetrievalAction checks the answer against the DB and pulls the data beans containing the information needed for the template pulls the email text<+-+

Using Tiles as Email Templates

2005-08-06 Thread aleiprecht
Hi all, I have a tile layout that renders an email text (plain). Now after the user selects an action(ie. password retrieval), I want to use the output of the tile (configured as an action path) as the source for my email in the other action (ie. password retrieval). I know how to pull t

Re: Multiple Input Bean

2005-08-06 Thread d d
  Instead of creating name and address fields as your form fields,Prepare a bean class eg empBean with these fields and 'collection' of this new bean as ur action forms fields.Struts has documentation on how to use collections as actionForm variables. Hope this helps u. Best luck, On Sat, 06

Multiple Input Bean

2005-08-06 Thread Tony Smith
Hi, Suppose I have a UserBean: class UserBean{ String name, String address, ... public String getName() ... } In one jsp page, I want to input multiple people beans and send back to server. The jsp UI is something like: People 1: Name [ ] address [] People