Why do you need it *after* action was performed and redirect was made?
When I load forminput example for the first time, it is loaded with
GET and URL is clean:
http://www.wicket-library.com/wicket-examples/forminput

After I submit a form, the following stuff is added to URL:
component=0&version=0&interface=IRedirectListener

We could get rid of the interface=IRedirectListener and if a request is made for:

http://www.wicket-library.com/wicket-examples/forminput?component=0&version=0
then that IRedirectListener is implied.
But getting rid of component=0&version=0 is a bit more difficult
Because we need to know what component is called for forminput and what version 
there is.

only this:
http://www.wicket-library.com/wicket-examples/forminput

returns just the homepage of the forminput application.
So after forminput you could have all kinds of pages. Of course we could see if 
we can make
this cleaner like:

http://www.wicket-library.com/wicket-examples/forminput/component0-version0
or
http://www.wicket-library.com/wicket-examples/forminput/page1_version0

So that we can construct it again.
Would that kind of url be better??

johan



-------------------------------------------------------
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to