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.

Just wondering if someone can help me out on an issue that we are experiencing with cookies and Phonegap on iOS.

I have a login service that I call in my app that is located at http://domain.name/fishing/login

It sets a cookie on my device called, "JSESSIONID" with a path of '/fishing/'.

All future requests to the server include that cookie and everything is groovy.

However, when I call the logout service (http://domain.name/fishing/logout) it clears out the JSESSIONID on the server but not on my device. So every future attempt to communicate with the server uses the old cookie value and is denied access.

Even when I try to log in again, the old cookie is still there and does not get replaced with a new one.

I've tried to manually clear the cookie through javascript but haven't had any luck. I can't even read it. Maybe because the webview is loading a file based document and is not on the same domain as the server?

Any suggestions/advice?

Thanks!

share|improve this question
1  
dont use coockies! instead store session id manually – Ocelot Nov 10 '12 at 7:35

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.