I am needing to write a CalDAV client library for the Mac, and I just wanted to make sure on what would be the best way to write it.
I am wondering if I should just use NSURLRequest or should I go to the socket level, or something in between?
My concern about using just NSURLRequest is that a new connection would be made for each call, instead of having 1 open connection that all "requests" go through.
Am I missing something?
Thoughts? Suggestions?