On Tue, 13 Mar 2001, kiatkin wrote:
> >>Query string is valueA=aaa&valueB=bbbb
>
> Thx for reply.. but this causing me can't retrieve the second parameter
> (valueB)
>
> servlet.log("value A "+ request.getParameter("valueA"));
> servlet.log("value B " +request.getParameter("valueB"));
>
> The output is
> value A aaa
> value B null
>
> It is bug?
>
Yes, it appears to be a bug. The "&" sequence is what you get when
you URL-encode a string containing an ampersand, and it looks like Struts
is doing that a little bit too aggressively.
Could you please report a bug to our bug tracking system?
http://nagoya.apache.org/bugzilla/
That way, it will be sure to be paid attention to. Sometimes, bug reports
on the mailing lists get lost in the volume of messages.
Thanks,
Craig McClanahan