what the title says :)
Using the common didReceiveAuthenticationChallenge method, i do
NSURLCredential *newCredential = [NSURLCredential credentialWithUser:usr
password:pwd
persistence:NSURLCredentialPersistenceForSession];
[[challenge sender] useCredential:newCredential forAuthenticationChallenge:challenge];
All works fine except for when there's swedish characters involved. I've checked the server, and apparently the HTTP auth credentials are not UTF-8 encoded.
I've looked around but i can't find a good way to define the character encoding anywhere.
In Android, to compare, there is a HttpParams object you can manipulate like so:
httpClient.getParams().setContentCharset(prefs.getCharacterEncoding());
httpClient.getParams().setCredentialCharset(prefs.getCharacterEncoding());
Could someone enlighten me as to what i need to do to make sure it is encoded the right way when it reaches the server?
Pointers much appreciated.