I'm trying to setup SPDY over AFNetworking but I'm having trouble knowing why am I getting timeouts.
I've already checked my server at SPDY check and everything looks alright.
I put this line of code in my initWithBaseURL:(NSURL *)url
method
NSString *origin = [NSString stringWithFormat:@"%@:443",kAPIClientBaseURLString];
[SPDYURLConnectionProtocol registerOrigin:origin];
I'm getting debug logs that appear to be alright
2013-12-23 15:26:37.889 Proj[42859:70b] SPDY [INFO] register origin: <SPDYOrigin: 0x19156fa0>
2013-12-23 15:26:37.890 Proj[42859:420f] SPDY [DEBUG] origin registered: <SPDYOrigin: 0x19156fa0>
2013-12-23 15:26:37.892 Proj[42859:441b] SPDY [INFO] start loading https://api.proj.mx:443/2/ursers/launching_info?param1=1¶m2=2
Then after some seconds of waiting i get
2013-12-23 15:28:07.994 Proj[42859:441b] SPDY [INFO] stop loading https://api.proj.mx:443/2/dr/drs?param1=1
2013-12-23 15:28:07.996 Proj[42859:441b] SPDY [WARNING] session connection error: Error Domain=SPDYSocketErrorDomain Code=6 "Unexpected end of stream." UserInfo=0x13e52710 {NSLocalizedDescription=Unexpected end of stream.}
And if I print the error, it displays as a timeout.
If I remove the SPDY integration (the 2 lines I wrote above) it all goes as it should.
I don't really know whats going on, would appreciate any help and comments.
Thanks.
I changed urls to avoid privacy and security issues.
Does your server support SPDY?
Try setting a breakpoint in the
socket:willDisconnectWithError:
delegate method. You can inspect[socket unreadData]
to see any unread data.If this doesn't give you any helpful information, try implementing (and logging) the other delegate methods.