Re: hidden data

2009-04-06 Thread dusty
The common pattern suggested for this requirement is to create interceptors to decode the values coming in and a jsp library/tag to encode the values in the link. PEGASUS84 wrote: > > Thank you. > i wish encode data in the query string how can I do? > -- View this message in context: http:

RE: hidden data

2009-04-06 Thread Martin Gainty
aucune responsabilité pour le contenu fourni. > Date: Mon, 6 Apr 2009 03:19:56 -0700 > From: pegasu...@hotmail.it > To: user@struts.apache.org > Subject: Re: hidden data > > > Thank you. > i wish encode data in the query string how can I do? > -- > View t

Re: hidden data

2009-04-06 Thread Manos Batsis
PEGASUS84 wrote: i wish encode data in the query string how can I do? If security is no concern and you just don't want the data to be obvious, you could use base64. there are libraries out there to do this. hth, Manos - T

Re: hidden data

2009-04-06 Thread PEGASUS84
Thank you. i wish encode data in the query string how can I do? -- View this message in context: http://www.nabble.com/hidden-data-tp22905294p22905999.html Sent from the Struts - User mailing list archive at Nabble.com. - To u

Re: hidden data

2009-04-06 Thread Manos Batsis
I think the OP wants to send data with a link (i.e. an HTTP GET) without those appearing within the URL query string. In short, its cannot be done. One however can: * Use POST with hidden fields * Store the data in the session scope * Encode the data in the query string hth, Manos Muthu V

Re: hidden data

2009-04-06 Thread PEGASUS84
yes is this my question, but my english is orrible. the problem is that I don't know the hidden tag. i try with but for taking the value of x in an action How can I do. I'm using the hidden tag into a link tag -- View this message in context: http://www.nabble.com/hidden-data-tp22905294p2290574

Re: hidden data

2009-04-06 Thread Muthu Velappan
How to send data to action without displaying it in form? Is that your question?If yes, then u can use field to hold the data and post it back to the action, right? If this is not what you intent, please explain ur issue a bit detail.. ~Muthu PEGASUS84 wrote: > > good moorning; > i've a que