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 Android's DefaultHttpClient to communicate with my server, I run into this weird problem.

This is basically what I want to achieve: When one of my activity is closed(onPause is called), I store all my Cookies into SharedPreferences. And when another activity is activated, I restore the Cookies from SharedPreferences. By doing so, I can persist session between activities.

I achieved this by calling httpClient.getCookieStore().getCookies() and store all their information into SharedPrefenrences in my Activity's onPause mehod.

I restore it by retrieving cookies from SharedPrefenrences and call httpClient.getCookieStore().addCookie().

I have logged all the progress and saw no difference between the cookies when I stored them and the cookies when I retrieved then from SharedPrefrence.

The problem is it's not working, the server still thinks I am not logged in(I have logged in before I cleared all cookies and restore then from file).

share|improve this question
Sorry, guys, I solved it. The problem is when I store/restore cookies, I forgot to save/retrieve domains, causing HttpClient the think it's not safe to give the servers I cookies – CarlLee Jul 26 '11 at 7:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.