You are viewing a plain text version of this content. The canonical link for it is here.
Posted to httpclient-users@hc.apache.org by "Brooks, Kenneth S" <ke...@chase.com> on 2010/05/11 20:26:39 UTC

CookiePolicy IGNORE_COOKIES alternative

In the middle of upgrading from httpclient 3.1 to 4.0.1
We had code that used CookiePolicy.IGNORE_COOKIES from 3.1
I notice that is not an option on 4.0.1..

Is there an alternative?

-k



This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law.  If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED.  Although this transmission and
any attachments are believed to be free of any virus or other
defect that might affect any computer system into which it is
received and opened, it is the responsibility of the recipient to
ensure that it is virus free and no responsibility is accepted by
JPMorgan Chase & Co., its subsidiaries and affiliates, as
applicable, for any loss or damage arising in any way from its use.
 If you received this transmission in error, please immediately
contact the sender and destroy the material in its entirety,
whether in electronic or hard copy format. Thank you.

RE: CookiePolicy IGNORE_COOKIES alternative

Posted by "Brooks, Kenneth S" <ke...@chase.com>.
Ahh. Forgot about the interceptor stack..

Thanks!

-k

-----Original Message-----
From: dan [mailto:dan.heidebrecht@gmail.com] 
Sent: Tuesday, May 11, 2010 2:47 PM
To: HttpClient User Discussion
Subject: Re: CookiePolicy IGNORE_COOKIES alternative

Hi,

I did this by calling the following methods on the client:

client.removeRequestInterceptorByClass(RequestAddCookies);
client.removeResponseInterceptorByClass(ResponseProcessCookies);

the classes needed for the removeXXX methods are:

org.apache.http.client.protocol.RequestAddCookies
org.apache.http.client.protocol.ResponseProcessCookies

Dan.

On Tue, May 11, 2010 at 12:26 PM, Brooks, Kenneth S
<ke...@chase.com> wrote:
> In the middle of upgrading from httpclient 3.1 to 4.0.1
> We had code that used CookiePolicy.IGNORE_COOKIES from 3.1
> I notice that is not an option on 4.0.1..
>
> Is there an alternative?
>
> -k
>
>
>
> This transmission may contain information that is privileged,
> confidential, legally privileged, and/or exempt from disclosure
> under applicable law.  If you are not the intended recipient, you
> are hereby notified that any disclosure, copying, distribution, or
> use of the information contained herein (including any reliance
> thereon) is STRICTLY PROHIBITED.  Although this transmission and
> any attachments are believed to be free of any virus or other
> defect that might affect any computer system into which it is
> received and opened, it is the responsibility of the recipient to
> ensure that it is virus free and no responsibility is accepted by
> JPMorgan Chase & Co., its subsidiaries and affiliates, as
> applicable, for any loss or damage arising in any way from its use.
>  If you received this transmission in error, please immediately
> contact the sender and destroy the material in its entirety,
> whether in electronic or hard copy format. Thank you.

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: CookiePolicy IGNORE_COOKIES alternative

Posted by dan <da...@gmail.com>.
Hi,

I did this by calling the following methods on the client:

client.removeRequestInterceptorByClass(RequestAddCookies);
client.removeResponseInterceptorByClass(ResponseProcessCookies);

the classes needed for the removeXXX methods are:

org.apache.http.client.protocol.RequestAddCookies
org.apache.http.client.protocol.ResponseProcessCookies

Dan.

On Tue, May 11, 2010 at 12:26 PM, Brooks, Kenneth S
<ke...@chase.com> wrote:
> In the middle of upgrading from httpclient 3.1 to 4.0.1
> We had code that used CookiePolicy.IGNORE_COOKIES from 3.1
> I notice that is not an option on 4.0.1..
>
> Is there an alternative?
>
> -k
>
>
>
> This transmission may contain information that is privileged,
> confidential, legally privileged, and/or exempt from disclosure
> under applicable law.  If you are not the intended recipient, you
> are hereby notified that any disclosure, copying, distribution, or
> use of the information contained herein (including any reliance
> thereon) is STRICTLY PROHIBITED.  Although this transmission and
> any attachments are believed to be free of any virus or other
> defect that might affect any computer system into which it is
> received and opened, it is the responsibility of the recipient to
> ensure that it is virus free and no responsibility is accepted by
> JPMorgan Chase & Co., its subsidiaries and affiliates, as
> applicable, for any loss or damage arising in any way from its use.
>  If you received this transmission in error, please immediately
> contact the sender and destroy the material in its entirety,
> whether in electronic or hard copy format. Thank you.

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org