Re: How to get Secure & non-HttpOnly cookies from CookieHandler

2013-06-14 Thread Vasiliy Baranov
On 14.06.2013 19:32, Chris Hegarty wrote: Hi Vasiliy, On 14/06/2013 09:48, Vasiliy Baranov wrote: Greetings, Suppose I need to call java.net.CookieHandler.get(URI uri, Map> requestHeaders) and need to filter out 'HttpOnly' cookies from the result. My understanding is in that case I should call

Re: How to get Secure & non-HttpOnly cookies from CookieHandler

2013-06-14 Thread Chris Hegarty
Hi Vasiliy, On 14/06/2013 09:48, Vasiliy Baranov wrote: Greetings, Suppose I need to call java.net.CookieHandler.get(URI uri, Map> requestHeaders) and need to filter out 'HttpOnly' cookies from the result. My understanding is in that case I should call CookieHandler.get with a URI starting with

How to get Secure & non-HttpOnly cookies from CookieHandler

2013-06-14 Thread Vasiliy Baranov
Greetings, Suppose I need to call java.net.CookieHandler.get(URI uri, Map> requestHeaders) and need to filter out 'HttpOnly' cookies from the result. My understanding is in that case I should call CookieHandler.get with a URI starting with "javascript://" or any other non-HTTP scheme. Now w