Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This issue is giving me serious headaches, I don't have a clue what's going on here. If you don't have any experience with the Windows Live network, I ask you to read this anyway, maybe it has nothing to do with it and am I overlooking something totally unrelated.

In short: I wrote an Objective-C class that allows me to connect to the Windows Live Messenger network, called WLNotificationSession. I works really straightforward, I set the username and password variables and do [notificationSession start];. It then logs in successfully.

Let's say I have two Windows Live accounts. The first one, A, is now logged in.

The problem arises when I try to fire up a second WLNotificationSession, with the other Windows Live account, B. It always fails. The usernames and passwords are 100% correct. When I try to log in B first, it succeeds. When I try A while B is logged in, it fails. The second login session always fails.

It can't be something like "too much log in attempts in a short period of time". When I log in A, quit the app, restart the app and log in A again, both attempts succeed. I can do this within 20 seconds. But, when I fire up the app, log A in, disconnect A, wait 2 hours, log in B (all without closing the app), it fails. (??)

For those of you with experience with the WL network: the failure occurs during the Tweener authentication. The part where you get the "Authentication-Info" or "WWW-Authenticate" HTTP header from the login server. When it fails, I get this value: "Www-Authenticate" = "Passport1.4 da-status=failed-noretry,srealm=Passport.NET,ts=-2,prompt,cburl=http://messenger.msn.com/images/logo102x88.gif,cbtxt=.NET%20Messenger%20Service";

I really hope someone can help with this. Thank you.

UPDATE This is some example code. I create a new project, add this code in the applicationDidFinishLaunching method and click Build & Run:

WLNotificationSession *notificationSession1 = [[WLNotificationSession alloc] init];

notificationSession1.username = @"testaccount1@hotmail.com";

notificationSession1.password = @"testpwd";

[notificationSession1 start];

WLNotificationSession *notificationSession2 = [[WLNotificationSession alloc] init];

notificationSession2.username = @"testaccount2@hotmail.com";

notificationSession2.password = @"testpwd";

[notificationSession2 start];

notificationSession1 always succeeds, notificationSession2 always fails. No global variables, or shared variables whatsoever.

UPDATE 2

Following David's suggestion the problem could be cookie-related, I added this code to my project: [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyNever];

I also use his method in the comments below to delete any cookies before and after each URL request. This is probably unnecessary, but I do it anyway.

I think at this point it is safe to assume it's not the cookies, or there has to be some other place where cookies are stored.

share|improve this question
Are you reusing the same instance of WLNotificationSession, or creating a new one? It's possible you've got some state variables that are not being reset between login attempts. Even if you are using a new instance, are you storing state in static variables or global variables? Or some other place outside of ivars that could be persisting? – Josh Hinman Sep 22 '10 at 0:56
That is what you would think, but nope, I'm using separate instances of WLNotificationSession, each with their own socket and variables. Also, no static or global variables at all. (I added some example code in the question) – Rits Sep 22 '10 at 13:19
What framework/class do you use for connection ? And what do you send ? Only login and password ? – David Sep 22 '10 at 13:33
You say No global variables, or shared variables whatsoever and ... no cookie ? – David Sep 22 '10 at 15:28
I am using the AsyncSocket (code.google.com/p/cocoaasyncsocket) framework for the socket connection. But the failure occurs during the Tweener authentication. For that I do a HTTPS request using NSURLConnection. I don't know about cookies, I have no experience with them. I certainly don't have any code to handle them. – Rits Sep 22 '10 at 15:59
show 1 more comment

1 Answer

up vote 1 down vote accepted

No global variables, or shared variables whatsoever

Then, as the authentication is performed using http request, this could be cookie issue. There might be some session cookie reminding the server about the former session.

I know that FBConnect (Facebook API for iPhone) uses the following method when logging out to remove any cookie :

- (void)deleteFacebookCookies {
  NSHTTPCookieStorage* cookies = [NSHTTPCookieStorage sharedHTTPCookieStorage];
  NSArray* facebookCookies = [cookies cookiesForURL:[NSURL URLWithString:@"http://login.facebook.com"]];
  for (NSHTTPCookie* cookie in facebookCookies) {
    [cookies deleteCookie:cookie];
  }
}

You could try this (replace facebook url with yours). You could even add some NSLogs to watch for these cookies.

share|improve this answer
Well, it certainly made sense to me and I was hoping this would be the problem.. but unfortunately, the issue remains. I am using your code to delete all cookies all the time, AND I am using this: [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyNever]; I think this should eliminate the possibility of cookies messing up, right? – Rits Sep 23 '10 at 19:57
Never mind. It works. The cookie thing did the trick. Thanks a lot man. – Rits Sep 23 '10 at 20:16

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.