Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using DefaultHttpClient and want to prevent HttpClient from accepting and sending cookies. I tried something like this but 'CookiePolicy.IGNORE_COOKIE' is not available.

mHttpClient.getParams().setParameter(ClientPNames.COOKIE_POLICY, CookiePolicy.IGNORE_COOKIE);

share|improve this question

1 Answer

You can't just make up your own int Constants lol,

always check the API: http://developer.android.com/reference/java/net/CookiePolicy.html

How about

CookiePolicy.ACCEPT_NONE

http://developer.android.com/reference/java/net/CookiePolicy.html#ACCEPT_NONE

share|improve this answer
if I use CookiePolicy.ACCEPT_NONE I get class cast exception – mkso Jun 29 '11 at 1:20
Hmmm what is the package of your HttpClient i.e. show us your imprts – Blundell Jun 29 '11 at 7:56
java.net.CookiePolicy and for for httpclient org.apache.http.impl.client.DefaultHttpClient also org.apache.http.client.params.CookiePolicy does not have anything for ignore cookie – mkso Jun 29 '11 at 17:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.