I need to retrieve URL from current Web page opened in Firefox by using Wicket. Can somebody tell me how to do that?
Thanks!
|
|
|
You need to query the underlying HTTPServletRequest:
Reference:
|
|||
|
|
|
The solution from Sean Patrick Floyd seems to be obsolete for wicket 1.5 If using wicket 1.5 (or above I guess) here is the solution:
Reference: |
|||
|
|
|
Depending on what exactly you want, this may not be possible. There is a short guide here in the Wicket wiki, but it has some caveats, notably that it only returns a relative URL in versions of Wicket after 1.3. That said, the method used is
If you go with the wiki's alternate method — the one involving the form — be warned: |
|||
|
|
|
To get the current page's url use the webrequest and UrlRenderer:
|
|||
|
|
|
This information may help: Getting Url for display |
|||
|
|