Re: Filling-in a Bean inside a Servlet

2005-09-03 Thread Paul Copeland
date, etc.) and validations that you want to perform on the incoming parameters anyway. Paul Copeland JOT Servlets Web Component Framework http://www.jotobjects.com Date: Fri, 2 Sep 2005 18:52:41 +0200 From: Dani Pardo <[EMAIL PROTECTED]> Subject: Re: Filling-in a Bean inside a Servlet &

Re: Filling-in a Bean inside a Servlet

2005-09-03 Thread Chris Pratt
letAPI Technology. [mailto: SERVLET-INTEREST@JAVA.SUN.COM]On Behalf Of DaniPardoSent: Friday, September 02, 2005 12:53 PMTo: SERVLET-INTEREST@JAVA.SUN.COM Subject: Re: Filling-in a Bean inside a Servlet> Can I fill all the properties of the Bean magically on a line, The> same way that the jsp

Re: Filling-in a Bean inside a Servlet

2005-09-02 Thread Zerbe John W
does this already. John Zerbe -Original Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] Behalf Of Dani Pardo Sent: Friday, September 02, 2005 12:53 PM To: SERVLET-INTEREST@JAVA.SUN.COM Subject: Re: Filling-in

Re: Filling-in a Bean inside a Servlet

2005-09-02 Thread Dani Pardo
Can I fill all the properties of the Bean magically on a line, The same way that the jsp does it via ??? There must be a trick or a workaround, because this method doesn't scale. There must be some trick to achieve to get a Customer object as a parameter: Hi, I respond to myse

Re: Filling-in a Bean inside a Servlet

2005-09-01 Thread Dani Pardo
En/na Brett Zamora ha escrit: Dani... Couple of thoughts... have you considered making the scope of the bean "session"? Seems to me like the properties of the bean are already set, based on your statement. Yep, I've tried making the property Bean session-scoped. But the problem remains th

Re: Filling-in a Bean inside a Servlet

2005-09-01 Thread Brett Zamora
riginal Message- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] Behalf Of Dani Pardo Sent: Thursday, September 01, 2005 11:08 AM To: SERVLET-INTEREST@JAVA.SUN.COM Subject: Filling-in a Bean inside a Servlet Hi, I'm

Filling-in a Bean inside a Servlet

2005-09-01 Thread Dani Pardo
Hi, I'm working on a CRUD app. I have a customer bean, with Name, City, Phone, etc.. I also have a jsp page (CustomerEdit.jsp) with all the text fields, that should be used to Add a new customer AND Edit an existent customer. N