using ActionForm for transfeering result set data

2004-02-26 Thread Pradeep, PK
-config.xml 6. in your action read data from database populate form 7. in jsp access form attributes to display values and if needed let client change it. Khalid Quoting Max Cooper [EMAIL PROTECTED]: Put it in the ActionForm. -Max - Original Message - From: Pradeep, PK [EMAIL

RE: using ActionForm for transfeering result set data

2004-02-26 Thread Pradeep, PK
Can we populate ActionForm to populate result set data..How? and then how one can retrieve it in JSP page ..in html table. If anybody has already done it ..I will appreciate if they can send me sample code...else even hint/refrences will do Pradeep Kumar Digital Globalsoft Ltd. (A subsidiary of

RE: FormBeans: A question of Style

2004-02-26 Thread Pradeep, PK
I think whatever you do you can't make JSP and Action Class independent. Where are you populating ActionForm Object from the results from service layer? In Action class only right? Which you know very well for which JSP page it will be applicable. Also is it easy to populate all what you need in

data transfer from Action class to jsp page

2004-02-25 Thread Pradeep, PK
I have this basic question. Suppose action class calls some business object and fetches some data (say employee detail). How to transfer this data to jsp page which is reached through ActionForward? One way I know is storing the data in session object..is there any better/different way

RE: data transfer from Action class to jsp page

2004-02-25 Thread Pradeep, PK
Sending the same question again.. I have this basic question. Suppose action class calls some business object and fetches some data (say employee detail). How to transfer this data to jsp page which is reached through ActionForward? One way I know is storing the data in session object..is

Action form

2004-02-24 Thread Pradeep, PK
Is it mandatory to create ActionForm class for each JSP if we want to send the form data to action class? Does it not make the ActionForm class dependent on the UI and liable to change as an when modifications is done in JSP page? Is there a way of dynamically creating the ActionForm class

RE: Action form

2004-02-24 Thread Pradeep, PK
are searching for DynaActionForm. Take a look at http://www.reumann.net/do/struts/lesson3/step4 I personally don't like them because of debug difficulties. Regards, Guido. Pradeep, PK wrote: Is it mandatory to create ActionForm class for each JSP if we want to send the form data to action class