[OT] JBoss EJBs or Hibernate

2004-06-07 Thread Kunal H. Parikh
Hi All! I just wanted a view of people in the industry on their preferences for PERSISTENCE, and if possible, WHY! I intend to run everything in the same JVM and most likely be using JBOSS. TIA, Kunal - To unsubscribe,

Single ActionForm accross multiple Actions

2004-06-07 Thread Kunal H. Parikh
Hi All! I want to maintain a single ActionForm across multiple Actions. I want to get the info from the user in a step-by-step manner, but only wanna talk to the SessionBean at the end when they hit confirm. The alternative that I can think of is writing a JavaBean with all the properties, and

RE: ValidatorForm vs ValidatorActionForm

2004-06-07 Thread Kunal H. Parikh
http://wiki.apache.org/struts/ValidatorActionForms -Original Message- From: Navjot Singh [mailto:[EMAIL PROTECTED] Sent: Tuesday, 8 June 2004 14:48 To: Struts Users Mailing List Subject: ValidatorForm vs ValidatorActionForm hi, What's the use of ValidatorActionForm when ValidatorForm

RE: Saving state.

2004-06-04 Thread Kunal H. Parikh
Hi! What state are you trying to remember? If it is the preparation of the grid in JSP1, then u can either save the attributes as session attributes or the results as a session attribute. Also, if everything is related to an ID, then u can reconstruct links with the id in all links on the page.

RE: [OT] Good env for struts-based-web-tier and ejb components development

2004-06-03 Thread Kunal H. Parikh
Hi Navjot! I would suggest IntelliJ IDEA for Java development. While IDEA does have support for EJB development, I prefer using plain Java Classes with XDoclet tags. IDEA gives you a high degree of flexibility, great environment and fantastic re-factoring support. IDEA increases developer

Default methodName for DispatchAction

2004-06-01 Thread Kunal H. Parikh
Hi All! I was wondering if it were possible to have a default method called when there is no parameter matched or the parameter is null. TIA, Kunal - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: [SOLVED] Default methodName for DispatchAction

2004-06-01 Thread Kunal H. Parikh
response) throws Exception { === Thanks, Kunal -Original Message- From: Kunal H. Parikh [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 June 2004 11:53 To: 'Struts Users Mailing List' Subject: Default methodName for DispatchAction Hi All! I was wondering if it were

RE: [OT]: StatefulSessionBeans and HTTPSession

2004-05-28 Thread Kunal H. Parikh
: Kunal H. Parikh [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 9:15 PM To: Struts Users Mailing List Subject: [OT]: StatefulSessionBeans and HTTPSession Hi All! Just wanted to know if there is a better strategy to do this. My current implementation: Struts/JSP -- BusinessDelegate

Determining tiles definition name from JSP

2004-04-20 Thread Kunal H. Parikh
Hi All! Is it possible to determine the name of the tiles definition being processed from within a JSP page? I am attempting to have an XML menu with IDs exactly the same as the name of the tile definition. Then I would do some XSLT, and id matching and fetch the appropriate XML fragment.

RE: Newbie question: Can anything cause the controller servlet to set the ActionForm bean twice

2004-04-20 Thread Kunal H. Parikh
Hey Neil! Can you update me on the Struts' transaction token handling? What exactly is Struts' transaction token handling? TIA, Kunal -Original Message- From: Neil Erdwien [mailto:[EMAIL PROTECTED] Sent: Wednesday, 21 April 2004 06:59 To: Struts Users Mailing List Subject: Re:

Must the from name and action name MATCH ?

2004-04-19 Thread Kunal H. Parikh
Hi All! I was wondering if I could attach a form with a name different to that of the action. i.e. === form name=searchForm type=custom.searchForm / action name=searchAction ... ... / === I want to follow this pattern of naming conventions: ActionName:

RE: DynaValidatorActionForm client-side validation

2004-04-09 Thread Kunal H. Parikh
I may be a little off here, but why are you using the DynaValidatorActionForm ? Try using the DynaValidatorForm and u should have client-side and server-side validation working. This is because, the DynaValidatorActionForm.getValidationKey returns the mapping PATH, whereas the