RE: Newbie never displays errors

2004-10-15 Thread Hollaway, Shedrick CIV (TRFKB C600)
; the Validate method of ActionForm? Since that is where the > validation is happening. > Thanks > > > -Original Message- > From: Hollaway, Shedrick CIV (TRFKB C600) > [mailto:[EMAIL PROTECTED] > Sent: Friday, October 15, 2004 10:00 AM > To: 'Struts Users Maili

RE: Newbie never displays errors

2004-10-15 Thread Hollaway, Shedrick CIV (TRFKB C600)
Looks like you are not saving your errors. Try this after errors.add: saveMessages(request, (ActionMessages) errors); > -Original Message- > From: Nadia Kunkov [mailto:[EMAIL PROTECTED] > Sent: Friday, October 15, 2004 9:01 AM > To: Struts Users Mailing List > Subject: RE: Newbie never d

RE: Validator not validating v. 1.2.4

2004-10-14 Thread Hollaway, Shedrick CIV (TRFKB C600)
Is this the complete form bean? > the form bean looks like: > > public class PasswordReminderForm extends ValidatorActionForm { > public PasswordReminderForm() { > } > private String emailAddress; > public String getEmailAddress() { > return emailAddress; > } > publ

RE: Problem with struts validator../ Struts 1.2

2004-10-14 Thread Hollaway, Shedrick CIV (TRFKB C600)
Marco, is missing. > my validation.xml Is as follows.. > > > > > > key="error.field.required"/> > > > > > > >

RE: a re-deploy does not refresh ApplicationResources in Apache

2004-09-21 Thread Hollaway, Shedrick CIV (TRFKB C600)
Thomas, You will need to make the Tomcat context reloadable. Open the project properties and select Tomcat (if not present install Sysdeo Eclipse Tomcat Launcher plugin). In the 'General' tab, check the both 'Can update server.xml file' and 'Mark this context as reloadable (reloadable=true).' Sh

RE: Tutorial for DAO with Struts

2004-09-20 Thread Hollaway, Shedrick CIV (TRFKB C600)
Download Firestorm/DAO and study generated source code. www.codefutures.com/products/firestorm/ Shed. > -Original Message- > From: Manuel Wissmann [mailto:[EMAIL PROTECTED] > Sent: Saturday, September 18, 2004 4:39 AM > To: [EMAIL PROTECTED] > Subject: Tutorial for DAO with Struts > >

RE: [OT] someone using Outlook 2003, please tell me it can't be t his LAME...

2004-09-02 Thread Hollaway, Shedrick CIV (TRFKB C600)
Rick, if you view by conversation topic (View -> Current View -> By Conversation Topic) or customize that view you'll be able to bare the pain of Lookout. Shed. > -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 02, 2004 10:45 AM > To: Struts Us

RE: [ANN] Struts 1.2.2 release is now available for download.

2004-08-31 Thread Hollaway, Shedrick CIV (TRFKB C600)
A big thanks to you James for your leadership and all involved your labor :-D Shed. > -Original Message- > From: James Mitchell [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 31, 2004 10:19 AM > To: Struts Users Mailing List > Cc: Struts Developers List > Subject: [ANN] Struts 1.2.2 rel

RE: Multiple forms in one JSP + one Action

2004-08-12 Thread Hollaway, Shedrick CIV (TRFKB C600)
> Sent: Thursday, August 12, 2004 12:05 PM > To: Struts Users Mailing List > Subject: Re: Multiple forms in one JSP + one Action > > > Hollaway, Shedrick CIV (TRFKB C600) wrote: > > > Rick, my apologies for being unclear here, html:text is > html-el:text and I >

RE: Multiple forms in one JSP + one Action

2004-08-12 Thread Hollaway, Shedrick CIV (TRFKB C600)
Rick, my apologies for being unclear here, html:text is html-el:text and I am using JSTL to retrieve data and iterate with (c:foreach). There are alot more fields involve here each ActionForm corrolate to a database tables(Atable = Aform, Btable = Bform). I would like the user to be able update fie

RE: Multiple forms in one JSP + one Action

2004-08-12 Thread Hollaway, Shedrick CIV (TRFKB C600)
Rick wrote: Guys, This is what I wanted to do without using any javascript. <%-- first form stuff -- using formA --%> <%-- second form stuff -- using formB -- displayed%> First Contact: <%-- t

RE: Multiple forms in one JSP + one Action

2004-08-12 Thread Hollaway, Shedrick CIV (TRFKB C600)
Micheal I was trying to submit all three at one time. But you're that is not an option. So, I have to do something like this: first.jsp <%-- first form stuff -- using formA --%> <%-- second form stuff -- using formB --%> <%-- third

Multiple forms in one JSP + one Action

2004-08-12 Thread Hollaway, Shedrick CIV (TRFKB C600)
I am unable to find a solution or an alternate way of having multiple forms in one jsp and upon submit one action handling all forms.The jsp will have the forms as follows: <%-- first form stuff -- using formA --%> <%-- second form stuff -- using formB --%>