Re: Struts Form Logic Error

2005-10-24 Thread Michael Jouravlev
HttpServletRequest object is initially populated by servlet engine, Struts does not remove information from it. On 10/24/05, Asad Habib <[EMAIL PROTECTED]> wrote: > Hello. Thanks for your help. Is form-beans essential even if I don't want > to store form data in the session? Should the values of f

Re: Struts Form Logic Error

2005-10-24 Thread Michael Jouravlev
If I were you, I would first verify, that form is actually submitted with proper values to the proper address. If you use Firefox, download and install LiveHTTPHeaders and verify what is sent to the server. Is your form submitted correctly? On 10/24/05, Asad Habib <[EMAIL PROTECTED]> wrote: > Hell

Re: Struts Form Logic Error

2005-10-24 Thread Asad Habib
Hello. Thanks for your help. Is form-beans essential even if I don't want to store form data in the session? Should the values of form variables not be available in the action class via the use of request.getParameter('x') even if form-beans aren't used? Offcourse, I will eventually want to use

Re: Struts Form Logic Error

2005-10-24 Thread atta-ur rehman
Asad, Is this your complete struts-config.xml? If so, you're missing collection in it. Please add your form in the and then add the "name" attribute in the action to refer to your form. and then in your action mapping: > > /> > also make sure sure in your JSP you're using html:text

RE: Struts Form Logic Error

2005-10-24 Thread Fulgencio Comendeiro, Eduardo
Add validate="false" if you don't want execute the method form.validate() in the Form bean. mailto:[EMAIL PROTECTED] Enviado el: lunes, 24 de octubre de 2005 13:42 Para: Struts Users Mailing List Asunto: RE: Struts Form Logic Error LoginForm is a Bean w

RE: Struts Form Logic Error

2005-10-24 Thread Fulgencio Comendeiro, Eduardo
LoginForm is a Bean whit seter's and geter's with properties String businessName String businessAddress String businessZipCode String businessPhoneNumber notation (1) type="com.opcionuno.LoginForm"/>