You'll have to communicate the parameters *somehow*, whether that's using POST for all your requests (but that's bad form when your requests are simply looking up data in the database), exposing the full url, or mapping parameters to url path elements.
I suppose you could also write the front-end to do everything with Ajax calls, but I'd advise against it. Such sites are annoying to end-users. Imagine going to Amazon, bookmarking a product, then going back to the bookmark the next day...and it takes you to the homepage! Not very user-friendly. However you resolve this, please make a follow-up post to the list. I'm curious to see how you handle this issue. -Brian On Thu, Jan 21, 2010 at 12:09 AM, Zaheer Mohammad <zaheer.cse4...@gmail.com>wrote: > HI, > Thanks to all for your valuable sugestions > > Actually i want to hide all parameters form the Url > > actual Url's are like this : > > > http://localhost:8280/mspui/custumerAuthrtn.do?dispmethd=custumerAuthorize&accountNumber=12345 > > but I should get > > > http://localhost:8280/mspui/ > > by hiding parameters in the url. > > this is already developed project and this is a enhancement. using post > means i have to change much of code.is there any simple alternative way > of > acheiving this. > > > Thanks in Advance > > Zaheer Mohammad > > On Thu, Jan 21, 2010 at 9:47 AM, Raghuveer <raghuve...@infotechsw.com > >wrote: > > > Could you elaborate your requirement? > > URL will be changed when you use > > > > <action name=" loginv " > > class="com.test.actions.LoginAction "> > > <!-- Home --> > > <result name="app_home_action" type="redirectAction"> > > showHome > > </result> > > </action> > > <action name=" showHome " class="com.utc.pw.spanas.actions.CHome"> > > </action> > > -----Original Message----- > > From: Brian Thompson [mailto:elephant...@gmail.com] > > Sent: Wednesday, January 20, 2010 9:13 PM > > To: Struts Users Mailing List > > Subject: Re: Hiding URL in struts1.2 > > > > I would look into using URLRewrite [1]. It would be easy to go from > > showing > > this in the browser: > > > > http://localhost:8180/webproject/showHome > > > > to the application processing this: > > > > http://localhost:8180/webproject/loginv.do?dispmethd=showHome > > > > > > > > > > [1] - http://tuckey.org/urlrewrite/ > > > > On Wed, Jan 20, 2010 at 5:23 AM, chen thomas <thomasche...@gmail.com> > > wrote: > > > > > Maybe you could use post method of Form to do this > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > > For additional commands, e-mail: user-h...@struts.apache.org > > > > >