i have a pretty basic iphone app, makes some web calls with:
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
In testing, if I stop the app, turn off wireless, and restart the app (not kill and restart, just bring to foreground), I continue to get errors on any network url attempts. But other apps (safari, etc) restore fine.
Is there something I'm missing in needing to "clear" the network state in my app if it goes down while the app is in the background?