You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Bryant Luk (JIRA)" <ji...@apache.org> on 2010/10/06 17:14:32 UTC

[jira] Commented: (WINK-317) HttpHeadersImpl.getCookies() only ever returns the first cookie in the Cookie header

    [ https://issues.apache.org/jira/browse/WINK-317?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12918553#action_12918553 ] 

Bryant Luk commented on WINK-317:
---------------------------------

Hi, still taking a look at this issue.  Probably early in the morning but I don't think we can just do the split on ";" since the cookie attribute for Path, Domain, etc. separate the values by ";".

> HttpHeadersImpl.getCookies() only ever returns the first cookie in the Cookie header
> ------------------------------------------------------------------------------------
>
>                 Key: WINK-317
>                 URL: https://issues.apache.org/jira/browse/WINK-317
>             Project: Wink
>          Issue Type: Bug
>          Components: Server
>    Affects Versions: 1.1.1
>            Reporter: Chris Francuz
>            Priority: Minor
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> org.apache.wink.server.internal.contexts.HttpHeadersImpl.getCookies() iterates over cookie headers but does not iterate over cookies within the header that are split by a semicolon. \\
> \\
> As a result, only 1 cookie is ever returned. This affects using the javax.ws.rs.core.HttpHeaders interface, as well as the javax.ws.rs.CookieParam annotation.\\
> \\
> The fix would be to split the cookie header on the semicolon character, as per [RFC 2965|http://www.apps.ietf.org/rfc/rfc2965.html].  A fix implementation would be:
> \\
> \\
> {noformat} 
>     public Map<String, Cookie> getCookies() {
>         if (cookies == null) {
>             cookies = new HashMap<String, Cookie>();
>             List<String> cookiesHeaders = headers.get(HttpHeaders.COOKIE);
>             if (cookiesHeaders != null) {
>                 for (String cookieHeader : cookiesHeaders) {
>                 if (cookieHeader != null){
>                     for (String cookieText : split(cookieHeader, ';')){
>                         Cookie cookie = Cookie.valueOf(cookieText);
>                         if (cookie != null){
>                             cookies.put(cookie.getName(), cookie);
>                         }
>                     }
>                 }
>                 }
>             }
>         }
>         return cookies;
>     }
> {noformat}  
> (using org.apache.commons.lang.StringUtils.split() )

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.