Re: Preprocessing of request

2006-12-15 Thread Ed Griebel
have to get sent back and forth to the client. -ed Any thoughts on this point.? Thanks & regards, Anil. -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 9:03 PM To: Struts Users Mailing List Cc: Struts Users Mailing Lis

RE: Preprocessing of request

2006-12-15 Thread Anil Kumar T
better handling Any thoughts on this point.? Thanks & regards, Anil. -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 9:03 PM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: Re: Preprocessing of request

Re: Preprocessing of request

2006-12-14 Thread Frank W. Zammetti
mplement this? I mean where do we mention our CustomizedBaseAction >> class name? some where in properties ? Can you tell me..? >> >> Anil. >> >> >> >> -Original Message----- >> From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] >> Sent: Wednes

Re: Preprocessing of request

2006-12-14 Thread Ed Griebel
To: Struts Users Mailing List Cc: 'user@struts.apache.org' Subject: Re: Preprocessing of request Your best bet most likely is a servlet filter. Do the transformation and stuff the transformed content in request as an attribute, then grab it later in your Actions. Which version of Struts a

RE: Preprocessing of request

2006-12-13 Thread Anil Kumar T
1:03 AM To: Struts Users Mailing List Cc: 'user@struts.apache.org' Subject: Re: Preprocessing of request Your best bet most likely is a servlet filter. Do the transformation and stuff the transformed content in request as an attribute, then grab it later in your Actions. Which versio

Re: Preprocessing of request

2006-12-12 Thread Frank W. Zammetti
Your best bet most likely is a servlet filter. Do the transformation and stuff the transformed content in request as an attribute, then grab it later in your Actions. Which version of Struts are you using? If pre-1.3, modifying the RP is one of the few other options as Dave mentioned... you migh

RE: Preprocessing of request

2006-12-12 Thread Dave Newton
From: O'Toole, Joe [mailto:[EMAIL PROTECTED] > My application receieves an xml request. I need to perform some > transformation of this xml before performing business logic etc. I don't know if this is the best/most elegant solution but you can always throw stuff into a custom request processor or

Preprocessing of request

2006-12-12 Thread O'Toole, Joe
Hi My application receieves an xml request. I need to perform some transformation of this xml before performing business logic etc. Is there anyway I can configure through struts that I can invoke a java class that does this task as I don't want to perform it in the action or the model. Something