Re: Hiding/encrypting URL parameters in Struts application

2007-05-13 Thread roberto
Hi, Which version of Struts are you using? If you are using Struts 1.x you can use HDIV for that. HDIV guarantees integrity and confidentiality of non editable data, including of course URL parameters. On the other hand, if you are using Struts2 we haven't still published a release for Struts2.

Re: Hiding/encrypting URL parameters in Struts application

2007-05-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sid, Sid wrote: > Is there a way to hide/encrypt URL parameters using Struts? Struts does not handle this directly. You'll have to do it yourself or use an existing tool to protect these parameters. When I do this type of thing, I symmetrically encr

Hiding/encrypting URL parameters in Struts application

2007-05-12 Thread Sid
Hi Is there a way to hide/encrypt URL parameters using Struts? Right now i am passing some critical params in the URL For e.g http://localhost:8080/method=xyz?param1=123¶m2=xyz I want to avoid this. Please let me know if anything can be done about this. Thanks Sid