ActionServlet and RequestProcessor

2006-11-01 Thread Nitin M. Mandolkar
"The Actionservlet delegates the handling of a request to a RequestProcessor object" Previously this is job is done by ActionServlet itself. Now it is pass on to RequestProcessor. I am not getting how it is going to help for web application development. Can any one put some light on this one.

Re: ActionServlet and RequestProcessor

2006-11-01 Thread Nitin M. Mandolkar
If yes, please tell me how. ni3 On 11/1/06, Christopher Schultz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nitin, Nitin M. Mandolkar wrote: > "The Actionservlet delegates the handling of a request to a > RequestProcessor object" Previously

Re: How to make a SELECT list readonly? If set disabled, loses the value when submit.

2006-11-02 Thread Nitin M. Mandolkar
i used same logic, i.e. Hidden form field. ntin On 11/2/06, Puneet Lakhina <[EMAIL PROTECTED]> wrote: On 11/2/06, Gareth Evans <[EMAIL PROTECTED]> wrote: > > You could add an onchange function that sets the selected item back to the > orginal item. I wouldnt do that..imagine yourself as the u

Re: How to make a SELECT list readonly? If set disabled, loses the value when submit.

2006-11-02 Thread Nitin M. Mandolkar
Is any on know other logic apart from this, then please share with us. ni3 On 11/2/06, Nitin M. Mandolkar <[EMAIL PROTECTED]> wrote: i used same logic, i.e. Hidden form field. ntin On 11/2/06, Puneet Lakhina <[EMAIL PROTECTED]> wrote: > On 11/2/06, Gareth Evans <[EMAIL

RE: request.getParameterMap

2006-11-07 Thread Nitin M. Mandolkar
Cast it to String object. Nitin -Original Message- From: temp temp [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 8:04 AM To: user@struts.apache.org Subject: request.getParameterMap I want all the parameters in ServletRequest object for this I am using the method requ

RE: How do I configure this Interceptor for every action in struts.xml

2006-11-07 Thread Nitin M. Mandolkar
Extend the struts action class and provide your own action class. Which can be extended by every action in your application. May I know the role of your Interceptor? Nitin -Original Message- From: Asish Kr. Samanta [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 2:13 AM To:

RE: ActionServlet and RequestProcessor

2006-11-07 Thread Nitin M. Mandolkar
Is any body other knows about his. Nitin -Original Message- From: Nitin M. Mandolkar [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 01, 2006 10:26 AM To: Struts Users Mailing List Subject: Re: ActionServlet and RequestProcessor Hay Chris Good Logical reply. Is RequestProcessor

RE: ActionServlet and RequestProcessor

2006-11-07 Thread Nitin M. Mandolkar
Hi C Did you find any thing about this? Nitin -Original Message- From: Nitin M. Mandolkar [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 01, 2006 10:26 AM To: Struts Users Mailing List Subject: Re: ActionServlet and RequestProcessor Hay Chris Good Logical reply. Is

RE: request.getParameterMap

2006-11-12 Thread Nitin M. Mandolkar
Users Mailing List Subject: Re: request.getParameterMap -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nitin, > From: temp temp [mailto:[EMAIL PROTECTED] > How can I translatevalue [Ljava.lang.String;@1849daf to > readable String? Nitin M. Mandolkar wrote: > Cast it to S

RE: Regeneration of last page visited.

2006-11-12 Thread Nitin M. Mandolkar
Hi B You have keep track of user location on application level. Say suppose there are some pages in your web application. Like below... Apage1 Bpage1-> Bpage2-> Bpage3-> Bpage4 (Web Wizard) Cpage1-> Cpage2 (Web Wizard) Dpage1 B & C are your web application wizard, which meets some business req

RE: Transaction control in Struts

2006-11-12 Thread Nitin M. Mandolkar
There is no option in struts to maintain Transaction (ACID). You have look for frameworks like Hibernate or Java Transaction API may help you. Nitin -Original Message- From: Balwinder [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 08, 2006 10:35 PM To: Struts Users Mailing List Subj

RE: Last Page Regenration

2006-11-12 Thread Nitin M. Mandolkar
This solution is also good. If later on you find the filter code block is taking more time and creating some performance issues in that case you can easily remove it. By making few changes in web.xml. Even the URL pattern can help you more to apply it for specific pages rather than applying it to

RE: Struts, running email process in separate thread

2006-11-22 Thread Nitin M. Mandolkar
HI Levan I think the solution you are trying is good. But also look at this. What I will say. Don't create any thread from current action. Either put a entry in database. Like need to send a e-mail for [EMAIL PROTECTED] Write a daemon process using java or other language. This actually reads

RE: session maintenance in struts webapp

2006-11-22 Thread Nitin M. Mandolkar
HI I think Christopher is right. Popping up the user is not that much useful. I think it is good that you directly redirect the user to login page, if set session time out value expires on server site with Session time out error message. Here I have Q for Chirstopher : Christopher below is som

Re: Multiple struts apps

2006-12-04 Thread Nitin M. Mandolkar
Hi Rahul what don't you use single sign on. I do;t know very much about single sign on but it will reslove your problem. nitin On 12/2/06, Rahul Patel <[EMAIL PROTECTED]> wrote: How can I access multiple struts applications (running on different servers) from current struts application? I have