Bugs item #1543456, was opened at 2006-08-20 12:51
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1543456&group_id=119783

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: core
Group: 1.2
Status: Open
Resolution: None
Priority: 5
Submitted By: tal (talm)
Assigned to: Nobody/Anonymous (nobody)
Summary: CookieValuePersister issue

Initial Comment:
the CookieValuePersister.getCookie method compares the
name of the cookie and the name of the component (line
168):

// Names must match and Value must not be empty                         
(cookie.getName().equals(name))

But the condition is always false, because the value
that cookie.getName() return is the full path name, and
the component name is the relative name. 

WORKAROUND: change the condition to
(cookie.getName().endsWith(name))
This is by no means supposed to be a fix. The fix
should set the right name to the cookie or use the full
path of the component. 

cheers, talm

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1543456&group_id=119783

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to