Exceptions With Okhttp And Spdy
I have an Android Application using okHttp to do the communication with my server. I do some detailed error handling on the client side, reported to BugSense, and I've gotten a few
Solution 1:
stream was reset: CANCEL
: the SPDY stream was reset by either the local client or the remote peer. For example, the server may cancel a connection because it has crashed or is restarting.connect failed: ENETUNREACH
: your SPDY server isn't reachable. Perhaps it has disappeared since you did your connectivity check.stream was reset: REFUSED STREAM
: the remote server does not want to accept this connection, possibly because it is shutting down.Hostname 'myversion-dot-myapplication.appspot.com' was not verified
: the HTTPS certificate presented by the remote peer is not trusted by any of the root certificates on the requesting device.
Post a Comment for "Exceptions With Okhttp And Spdy"