Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Have you tried to use connectionWithRequest:delegate: instead of initWithRequest:delegate:startImmediately: ? – Oyashiro Jul 20 '12 at 14:50
Yes, I tried using both but same problem – Jitesh Jul 21 '12 at 6:19
Can you add more code ? When and how do you create the request ? – Oyashiro Jul 23 '12 at 7:11

1 Answer

up vote 0 down vote accepted

Yes, the problem got resolved.

I called my createConnection on main thread using performSelectorOnMainThread.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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