Hey just a heads up to anyone running a rails app in development mode
Connection.m defines a fairly short time out on requests (5 seconds)
which I was hitting pretty easily on my local dev webserver for search
queries and that sort of thing.
You can modify
static float timeoutInterval = 5.0;
in Connection.m to increase for development.
The default logging output doesn't really indicate the reason for the
request failure might be worth outputting the connectionDelegate.error
in the response log as well.
I happen to be processing all of my objective resource requests in the
background so this doesn't affect user experience in my app.