Re: NSURLConnection timeoutInterval only works in multiples of 30 seconds

2008-07-08 Thread Jerry Krinock
I know that you folks have taken a different turn with this discussion, but I need to post my test results to finish what we started a couple days ago, for other readers. RESULTS In Tiger, it behaves as I recall and exactly as Kanny described: The timeout gets rounded up 30 or 60 seconds.

Re: NSURLConnection timeoutInterval only works in multiples of 30 seconds

2008-07-06 Thread Jerry Krinock
On 2008 Jul, 05, at 15:55, [EMAIL PROTECTED] wrote: But when i run the app, the "After" statement with "timed out" message is logged after 30 seconds from the "Before" statement. When I set the timeoutInterval between 30.1 to 59.9, it is printed after 60 seconds and so on. I don't know how

NSURLConnection timeoutInterval only works in multiples of 30 seconds

2008-07-05 Thread kanny96
Hi, I am trying to do a periodic update based on the contents of a url, but when the website is down with 5** error, I would like to not wait more than a couple of seconds. So, I wrote the following code : url = [NSURL ...]; updateTimer = [[NSTimer scheduledTimerWithTimeInterval:60.0 t