Hi,

We have the following clean URL:
@UrlBinding("/article/{authorId}/{id}/{titleUrlified}/{$event}")

After a user is done editing a form they click on save which saves the article and then does a redirect resolution as follows: RedirectResolution redirect = new RedirectResolution(ArticleActionBean.class);
       redirect.addParameter("authorId", this.authorId).
               addParameter("id", this.id).
               addParameter("titleUrlified", this.titleUrlified);

We end up with:
http://www.local.ca:8080/web/article/28mqnalvgqf2n/2/some-article/view*?__fsk=-1249240358*

Unfortunately this URL isn't totally clean. Might appear picky but if one tries hard for URL's to follow clean URL's this is not good albeit the value is harmless. So... how can I get rid of the "__fsk=-1249240358" parameter?

Also... why is Stripes adding it? I don't see this particular field anywhere and don't see why its necessary.

Thanks,

--Nikolaos


------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to