up vote 0 down vote favorite
4
share [g+] share [fb]

I have a web site hosted on IIS with windows authentication. I am trying to access it in one of my iPhone web application. Presently i am using this code, but it is not working.

NSString *authString = [[[NSString stringWithFormat:@"%@:%@", @"myusername", @"mypassword"]dataUsingEncoding:NSUTF8StringEncoding] base64Encoding];

authString = [NSString stringWithFormat: @"Basic %@", authString];

**[requestObj setValue:authString forHTTPHeaderField:@"Authorization"];**

my web app is hosted with windows authentication. but here i am using basic. can any one post what is the correct http header for it.

Thanks..

link|improve this question

62% accept rate
feedback

4 Answers

up vote 3 down vote accepted

I think the main difference is you need to specify the domain you are authenticating against as well as the username and password. Something like this should work. I've used a synchronous request for brevity, ideally you should use an ASINetworkQueue or NSOperationQueue to perform the request.

NSString *username = @"test";
NSString *password = @"test";
NSString *domain = @"test";
NSURL *url = [NSURL URLWithString:@"http://myurl"];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request setUseSessionPersistence:YES];
[request setUsername:username];
[request setPassword:password];
[request setDomain:domain];
[request start];
if ([request error]) {
    if ([[request error] code] == ASIAuthenticationErrorType) {
        //Authentication failed
    }
} else {
    NSLog([request responseString]);
}

I don't have access to a Windows server to test this, but I have tested NTLM in the past so it should work... :)

link|improve this answer
Thanks Pokeb... It is working fine...thaanks a lot....but i need to play a video from windows server. But MPMovieplayerController is not supporting any authentication mechanism. What to do??? – nbojja May 8 '09 at 17:43
MPMoviePlayerController only supports loading media via the standard NSURL* methods. Your best bet is to add additional supported authentication types at the server, but as a last resort you could create a loopback HTTP server running on the device to proxy the data between NSURLConnection and the NTLM-authenticated server. – rpetrich May 9 '09 at 0:03
The example won't print any output to the log as it is asynchronous - when [request responseString] is evaluated there's a good chance that the request is still processing. However, the rest of it seems to work fine. – Ant Jan 23 at 23:19
feedback

Windows authentication (NTLM) isn't as simple as basic authentication. NTLM requires more than one webrequest to negotiate the security so there isn't a static HTTP header you can send to log in.

link|improve this answer
do you have any idea about solving the problem... – nbojja May 7 '09 at 19:58
Switching to use basic authentication would be the easiest solution. – David May 7 '09 at 21:33
but my enterprise app is already hosted one...i cant chage the authentication type... – nbojja May 7 '09 at 21:49
feedback

You can use the third-party ASIHTTPRequest library to perform NTLM over HTTP authentication.

link|improve this answer
Hi... Can you post me some code how to do NTLM auth with ASIHTTPRequest. thanks.. – nbojja May 7 '09 at 19:57
pokeb has beat me to it, please accept his answer :) – rpetrich May 8 '09 at 23:57
feedback

I'm not 100% sure it supports NTLM Authentication but have you investigated the connection:didReceiveAuthenticationChallenge method on the NSUrlConnection?

link|improve this answer
yea...i checked didReceivedAuthenticationChallenge method. it is working fine to download data. but i am trying to play a video. with MPMoviePlayerController it is not working well. – nbojja May 8 '09 at 16:59
feedback

Your Answer

 
or
required, but never shown

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