vote up 0 vote down star

I am looking for a way to add a timeout to a CFHTTP request. It seems like there should be a feature of the CFHTTPMessage or the CFReadStream object, but I can't find it. Do I have to roll my own timer on the run loop or something? (if so, any code for this?)

Thanks!

flag

78% accept rate

1 Answer

vote up 0 vote down check

Unless you have a special reason for using CFHTTPMessage I'd recommend using a higher level class such as ASIHTTPRequest which gives you added ease of use including timeouts.

link|flag
Roger, I did look @ ASIHTTPRequest and it looks great, except there's one thing I need it to do that it doesn't -- which is stream data from a CFReadStream object. (I could add a patch I s'pose...) – sehugg Jun 8 at 9:37
You should drop Ben at All seeing eye a line. He answers his mail and is a nice guy. If you have a patch, I'm sure he'd take it. – Roger Nolan Jun 9 at 8:59
ASIHTTPRequest does use an NSInputStream for the request body when posting files from an ASIFormDataRequest, and also whenever shouldStreamPostDataFromDisk is true. If your CFReadStream is reading from a file on disk, just use setPostBodyFilePath: and it'll do the rest. If not, it shouldn't be too tough to patch it to use your CFReadStream instead, but drop me a msg (my email is on the website) if you need a hand. – pokeb Jun 9 at 12:02
Thanks for the offer -- I ended up using NSURLConnection for everything except the POST, which I augmented with a NSTimer. Kind of a cop-out but I already had the code and some unit tests :P Next time I will start with ASIHTTPRequest in the first place! – sehugg Jun 10 at 15:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.