You could do something like:

        WebRequestEncoder encoder = new WebRequestEncoder(new
AppendingStringBuffer("your-url"));
        for (Iterator it = parameters.entrySet().iterator(); it.hasNext(); )
{
            Entry entry = (Entry) it.next();
            encoder.addValue((String) entry.getKey(), (String)
entry.getValue());
        }

I haven't tested that exact code, but basically this was taken from code in:
URIRequestTargetUrlCodingStrategy

-- 
Jeremy Thomerson
http://www.wickettraining.com

On Mon, Jun 23, 2008 at 4:01 PM, Scott Swank <[EMAIL PROTECTED]> wrote:

> Is there code available to me to generate the the http get parameter
> string that corresponds to a PageParameters instance?  I am generating
> links from our confirmation e-mail back to bookmarkable pages in our
> application.
>
> Thank you,
> Scott
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to