Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
2k views

NSURLConnection, NSURLRequest, untrusted cert and user authentication

Morning Everyone, I've been attempting to write an application that does some GETs from a remote Web Service that requires authentication. My main problem is that the majority of these remote servers ...
2
votes
2answers
92 views

NSURLConnection does not use the default credential

I'm trying to connect to http://cmis.demo.nuxeo.org/nuxeo/atom/cmis/ with NSURLConnection. This demo web service is documented to require authentication (login: Administrator / password: ...
2
votes
1answer
136 views

Not able to do authentication using client certificate in iPhone

team, I have .net based REST service configured with 2-way SSL. In my iphone side, i have installed the server certificate in the device profiles and client certificate is bundled as application ...
2
votes
1answer
263 views

Can't reauthenticate with different NSURLCredentials (old deleted ones are used)

i've been searching stackoverflow, google, apple and other places. The tips provided look promising, i implemented them but alltogether don't seem to work or get enforced. Problem: I have an ...
2
votes
1answer
320 views

NSURLCredential is permanent?

We have a problem with our iPhone-simulator that was caused by using this line: Foo = [NSURLCredential CredentialWithUser:foo password:bar persistance:NSURLCredentialPersistencePermanent]; ...
1
vote
1answer
48 views

NSURLAuthenticationchallenge doesnt activate over 3G?

I have a web service set up on a server. The IIS is set up to have Basic Authentication along with SSL/HTTPS. Running the app in the iPhone simulator works fine and fires the NSURLConnection's ...
1
vote
0answers
60 views

Is there support for resumed TLS connections with NSUrlCredential/NSUrlConnection

TLS handshaking on every micro request is not a good idea. I read about resumed TLS sessions that have less overhead. I'm not clear if this is supported in NSUrlConnection when used with ...
1
vote
1answer
221 views

Clear the credentials from UIWebView

What i am doing here is, fetching a URL which has authentication. Hence, i use the function - (void)connection:(NSURLConnection *)connection ...
1
vote
0answers
117 views

Can't remove NSURLCredentials from storage

I'm trying to remove credentials from storage when an account is deleted from my app. Here's the code I'm using: NSDictionary *dict = [[NSURLCredentialStorage sharedCredentialStorage] ...
1
vote
0answers
183 views

NSURLCredentialPersistencePermanent doesn't seem permanent?

I've been trying to solve this for some time now, but without success. Questions such as this one here or tuts on using authentication by apple and other blogs shed some light but not all. My basic ...
1
vote
0answers
229 views

Need help with NSURLCredential initWithTrust:

I have been beating my head against the wall for the last few hours and cannot find even a glimmer of a solution anywhere. I am working on an app to learn how to work with JSON so I am just building ...
1
vote
2answers
2k views

didReceiveAuthenticationChallenge causing EXC_BAD_ACCESS

If the website doesn't require authentication, my code works fine, if it does, it errors with EXC_BAD_ACCESS right after printing "credential created". I'm not releasing anything, and this code is ...
0
votes
0answers
53 views

iPhone HTTPS/SSL client authorization with already imported certificates

I would like to make an application that will introduce itself with SSL client certificate. I know it can be done if you have the access to the certificate. The question is do I have to handle ...
0
votes
0answers
46 views

Configuring SSL Certificate interoperability between an iOS app and a Web Service

I'm currenty developing an application where I need to configure SSL Certificate interoperability. The scenario is the following. The application asks the user username and password by means of a ...
0
votes
0answers
37 views

Cant get nsurlrequest basic auth to work with swedish password

what the title says :) Using the common didReceiveAuthenticationChallenge method, i do NSURLCredential *newCredential = [NSURLCredential credentialWithUser:usr ...
0
votes
0answers
31 views

Restricting write access to NSURLCredential

I was looking at using NSURLCredential and had a rather obvious question. ...
0
votes
0answers
252 views

Is it possible to share session information (or NSURLCredentials, or NSHTTPCookieStorage) among iOS apps?

I am working on an application which displays an HTML5-based mobile site via a UIWebView. As a workaround in response to Apple's IAP policies, which have become stricter in the past few months, I have ...
0
votes
0answers
481 views

Authentication problem when using MPMoviePlayerController to play a mp4 file hosted on webdav server

part of my code : NSURLCredential *credential = [[NSURLCredential alloc] initWithUser:appDelegate.userName ...
0
votes
1answer
909 views

NSURLCredential and NSURLConnection

I have been trying to search for a way to unset the credentials once you set a NSURLCredential with a NSURLConnection that is using NSURLCredentialPersistenceForSession, but I couldn't find a working ...
0
votes
1answer
1k views

NSURLCredentialStorage and client certificate authentication

From what I see in the documentation of MPMoviewPlayerController, NSURLCredentialStorage can be set up as an alternative of NSURLConnection authentication challenges (this is useful for higher level ...
0
votes
3answers
5k views

iPhone: How to Get Basic Authentication to HTTPS Web Service Using NSURLCredential

I am trying to call an https web service (RESTful) using basic authentication. It works fine if I put the credentials in the url itself but I would rather add it to the request so that the password ...