Re: Authentication and NSURLConnection sendSynchronousRequest

2008-06-12 Thread Paul E. Robichaux
On 6/12/08 2:18 PM, "Jens Alfke" <[EMAIL PROTECTED]> wrote: > > On 12 Jun '08, at 10:35 AM, Paul E. Robichaux wrote: > >> After doing that, I now get a compiler warning that there's a >> duplicate >> interface defined for NSURLRequest(NSHTTPURLRequest), > > You can get around that by changing t

Re: Authentication and NSURLConnection sendSynchronousRequest

2008-06-12 Thread Jens Alfke
On 12 Jun '08, at 10:35 AM, Paul E. Robichaux wrote: After doing that, I now get a compiler warning that there's a duplicate interface defined for NSURLRequest(NSHTTPURLRequest), You can get around that by changing the category name (the part in parentheses) to anything different. and

Re: Authentication and NSURLConnection sendSynchronousRequest

2008-06-12 Thread Paul E. Robichaux
On 6/12/08 12:44 PM, "Jens Alfke" <[EMAIL PROTECTED]> wrote: > > On 12 Jun '08, at 8:35 AM, Paul E. Robichaux wrote: > >> @implementation NSURLRequest(NSHTTPURLRequest) >> + (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host >> { >>return YES; >> } >> @end >> >> At the end of one of my

Re: Authentication and NSURLConnection sendSynchronousRequest

2008-06-12 Thread Jens Alfke
On 12 Jun '08, at 8:35 AM, Paul E. Robichaux wrote: @implementation NSURLRequest(NSHTTPURLRequest) + (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host { return YES; } @end At the end of one of my .m files, the code builds, though I get warnings that some other methods aren't impleme

Authentication and NSURLConnection sendSynchronousRequest

2008-06-12 Thread Paul E. Robichaux
I¹m writing a simple demo application showing how to use some Exchange Web Services (EWS) features in Cocoa. I am a total Cocoa n00b but have most of the app and UI working, thanks to a lot of google-fu and my now-worn copy of Hillegas' 3rd ed. I¹m having trouble authenticating to the actual EWS se