java - Exceptions with okHttp and SPDY -
i have android application using okhttp communication server. detailed error handling on client side, reported bugsense, , i've gotten few confusing ioexceptions hoping explained me. exceptions are:
1. stream reset: cancel 2. connect failed: enetunreach (network unreachable) 3. stream reset: refused_stream 4. hostname 'myversion-dot-myapplication.appspot.com' not verified
i don't recall seeing first 3 before migrating okhttp, specificlly spdy pieces. last 1 issue have struggled on app engine (ssl provided appengine seems throw error.)
i checking connectivity before initiating transfer, happens when connectivity dropped while transferring? there else cause this?
thanks!
evan
stream reset: cancel
: spdy stream reset either local client or remote peer. example, server may cancel connection because has crashed or restarting.connect failed: enetunreach
: spdy server isn't reachable. perhaps has disappeared since did connectivity check.stream reset: refused stream
: remote server not want accept connection, possibly because shutting down.hostname 'myversion-dot-myapplication.appspot.com' not verified
: https certificate presented remote peer not trusted of root certificates on requesting device.
Comments
Post a Comment