Java HttpURLConnection: Can it cope with duplicate header names? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T15:06:36Z http://stackoverflow.com/feeds/question/156514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156514/java-httpurlconnection-can-it-cope-with-duplicate-header-names 0 Java HttpURLConnection: Can it cope with duplicate header names? toby 2008-10-01T07:02:49Z 2008-10-01T08:14:09Z <p>I am debugging some code in the Selenium-rc proxy server. It seems the culprit is the HttpURLConnection object, whose interface for getting at the HTTP headers does not cope with duplicate header names, such as:</p> <pre> Set-Cookie: foo=foo; Path=/ Set-Cookie: bar=bar; Path=/ </pre> <p>The way of getting at the headers through the HttpURLConnection(using getHeaderField(int n) and getHeaderFieldKey(int n)) seems to be causing my second cookie to be lost. My question is</p> <ol> <li>Is it true that HttpURLConnection itself can't cope with it, and</li> <li>If so, is there a workaround to it?</li> </ol> http://stackoverflow.com/questions/156514/java-httpurlconnection-can-it-cope-with-duplicate-header-names/156574#156574 0 Answer by Olaf for Java HttpURLConnection: Can it cope with duplicate header names? Olaf 2008-10-01T07:29:49Z 2008-10-01T07:29:49Z <p>Without actually having tried it (can't remember to have handled that topic myself), there's also getHeaderFields, inherited from <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLConnection.html#getHeaderFields()" rel="nofollow">UrlConnection</a>. Does this do what you need?</p> http://stackoverflow.com/questions/156514/java-httpurlconnection-can-it-cope-with-duplicate-header-names/156591#156591 1 Answer by skaffman for Java HttpURLConnection: Can it cope with duplicate header names? skaffman 2008-10-01T07:35:10Z 2008-10-01T07:35:10Z <p>My recommended workaround is to not use HttpUtilConnection at all, which is crude and unintuitive, but use commons-httpclient instead. </p> <p><a href="http://hc.apache.org/httpclient-3.x/" rel="nofollow">http://hc.apache.org/httpclient-3.x/</a> </p> http://stackoverflow.com/questions/156514/java-httpurlconnection-can-it-cope-with-duplicate-header-names/156677#156677 0 Answer by toby for Java HttpURLConnection: Can it cope with duplicate header names? toby 2008-10-01T08:14:09Z 2008-10-01T08:14:09Z <p>Ok, I found the problem, and the answer to the original question. Basically, the Cookie implementation I used (python's default Cookie Lib) used \r\n to delimit the different Set-Cookie headers(as supposed to \n), this confused HttpUrlConnection and caused it to stop at the first occurence of that delimiter(I am going to guess it stops at the first empty line). So the answer to the first question is: Yes, it can cope with duplicate header names, but is buggy in another way. Currently fixing the python library is a workable workaround, but it's not going to work long term because we don't own that library. I am sure using the httpclient library is a sensible way to go, but I am hoping for a solution that requires less work. So I don't know exactly what to do there yet.</p>