Thanks! that worked. Nasty bug in WO.
Now, I have a cookie question that seems to cause weird behavior too.
I'm setting a cookie with the following code:
WOCookie atpCookie = new WOCookie("ATP_PID_1004", encryptedValue);
redirect.setUrl(url);
response.addCookie(atpCookie);
redirect.appendToResponse(response, context());
return redirect;
When I retrieve and print out cookies on the invoked page using this
code:
System.out.println("login cookie values: " + this.request
().cookieValues().toString());
I get:
login cookie values: {ATP_PID_null =
("b3c6bd86effa3de9b4c6c410c22f98"); }
Why is the name of my cookie getting changed from ATP_PID_1004 to
ATP_PID_null?
Thanks,
Jeff
On Jul 31, 2007, at 10:49 AM, Zak Burke wrote:
Jeff Schmitz wrote on 7/31/07 11:28 AM:
However, when I pick up the parameters on the other side, there is
a stray "&" being added before the NICK parameter.
[...]
When I print the dictionary out it shows:
login Hyperlink values: {amp;NICK = ("FireBreathers"); USER =
("1004"); amp;wosid = ("a1snzyY9gzOgLCObCkS5kg"); }
Actually, it looks like a stray "amp;" rather than "&" which
makes me think WO is double-encoding the ampersands.
See this recent post:
http://lists.apple.com/archives/webobjects-dev/2007/Jul//msg00640.html
and this older one:
http://lists.apple.com/archives/webobjects-dev/2006/Feb/msg00451.html
zak.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]