C chhoda macrumors 6502 Original poster Oct 25, 2008 285 1 Apr 4, 2009 #1 Hi All, I am kind of facing easibility question "expect the app to use HTTP Digest Authentication to store user credentials. And the app should be able to handle cookies for storing session ID". how this can be done in iphone? regards CH
Hi All, I am kind of facing easibility question "expect the app to use HTTP Digest Authentication to store user credentials. And the app should be able to handle cookies for storing session ID". how this can be done in iphone? regards CH
J jnic macrumors 6502a Oct 24, 2008 567 0 Cambridge Apr 6, 2009 #2 HTTP Digest Authentication Click to expand... Try NSURLProtectionSpace. the app should be able to handle cookies for storing session ID Click to expand... That's just a string, so either NSUserDefaults or a bit of SQLite if you require keeping more complex state.
HTTP Digest Authentication Click to expand... Try NSURLProtectionSpace. the app should be able to handle cookies for storing session ID Click to expand... That's just a string, so either NSUserDefaults or a bit of SQLite if you require keeping more complex state.
C chhoda macrumors 6502 Original poster Oct 25, 2008 285 1 Apr 14, 2009 #3 any examples I would appreciate anybody sharing examples of NSURLProtectionSpace. usage. I got his, but it seems https http://devworld.apple.com/documentation/Cocoa/Conceptual/URLLoadingSystem/index.html --CH
any examples I would appreciate anybody sharing examples of NSURLProtectionSpace. usage. I got his, but it seems https http://devworld.apple.com/documentation/Cocoa/Conceptual/URLLoadingSystem/index.html --CH
C chhoda macrumors 6502 Original poster Oct 25, 2008 285 1 May 12, 2009 #4 not yet figured out. Hi All, ////////////