mchack <mchack <at> cisco.com> writes:

> I am trying to gain access to the value pair, in your example <p0,abc> as
> encoded in the URL. The params.getString("p0") does return abc in the
> constructor. It returns null if I try to retrieve it via
> getRequest.getParameter("p0") in getVariation(). 

It's not a parameter, but part of the path. So, call:

  getRequest().getPath();

and then parse it yourself.



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to