I am trying to make connection using NSURLConnection with my server. I have implemented this many time before but currently its not calling its delegate methods in any case(success/failure/timeout). I cannot understand why it is happenning.
Below is the code which I have written.
in .h i have implenented NSURLConnectionDelegate
in .m
This is getting called, I have checked by putting log.
self.connection = nil;
self.connection = [[NSURLConnection alloc] initWithRequest:MyRequest delegate:self startImmediately:YES];
My connection object is not nil.
Delegate method which i have impleneted are
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
- (void)connectionDidFinishLoading:(NSURLConnection*)theConnection
I have putted logs in all of them but none of them is getting called.
I have also checked my sever, & its working fine. I am also connected to internet.
Any one can throw some light, what I am missing.

connectionWithRequest:delegate:instead ofinitWithRequest:delegate:startImmediately:? – Oyashiro Jul 20 '12 at 14:50