https://issues.apache.org/bugzilla/show_bug.cgi?id=46403
--- Comment #5 from novoj <novotn...@gmail.com> 2010-05-26 10:59:30 EDT ---
The problem is also with Firefox 3.6.3 and Tomcat 6.0.26. When reading Cookie
via Firefox API:

function getCookie(name, host) {
        var cookieManager =
Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager);
        var iter = cookieManager.enumerator, {
        nsICookie
    }
    = Ci;
    while (iter.hasMoreElements()) {
        var cookie = iter.getNext();
        if (cookie instanceof nsICookie && cookie.name == name && cookie.host
== host) {
            return cookie.value;
        }
    }
    return null;
}

It reads quoted values with quotes around them - which is obviously wrong.
Seems, that only Tomcat respects the RFC :(.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to