part of my code :

NSURLCredential *credential = [[NSURLCredential alloc] 
                                initWithUser:appDelegate.userName
                                password:appDelegate.userPass
                                persistence: NSURLCredentialPersistenceForSession];
NSURLProtectionSpace *protectionSpace = [[NSURLProtectionSpace alloc]
                                          initWithHost:appDelegate.serverIP
                                          port:80
                                          protocol:@"http"
                                          realm:nil
                                          authenticationMethod:NSURLAuthenticationMethodDefault];

[[NSURLCredentialStorage sharedCredentialStorage] setDefaultCredential:credential
                                                  forProtectionSpace:protectionSpace];
[protectionSpace release];
[credential release];

MPMoviePlayerController *smallMovie = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:tmp]];

where the NSString "tmp" is an URL for player, for example: http://2.33.44.55/webdav/folder_1/testVideo/01.mp4

the appDelegate.userName and appDelegate.userPass are username and password that requested by the server.

the host name I give to NSURLProtectionSpace as appDelegate.serverIP is a network IP such as 2.33.44.55 (it is a NSString)

The result is the player did not appear, although there is an invisible view stuck the screen.

But, if I used mobile Safari to open that mp4 link and entered the username and password in a popup window, I could see the film playing in mobile Safari. Then, I closed the Safari, and executed my application, the player appeared and the film played smoothly in my application without any modification of above code.

Please give me some advice for this situation, thank you very much.

link|improve this question
This problem is solved by myself ^^" – 黃木杉 Feb 11 '11 at 1:51
I set the "realm" property to @"webdav", and left the host property as IP, then it worked. – 黃木杉 Feb 11 '11 at 1:52
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.