I'm using Facebook Android SDK 3.0 to upload a photo to my album. Everything works, but sometimes the first upload fails with a somewhat unexpected SSL error.
See function toHttpConnection in Request.java.
try {
connection = createConnection(url);
serializeToUrlConnection(requests, connection);
} catch (IOException e) {
// THIS IS WHERE THE ERROR ORIGINATES FROM!
throw new FacebookException("could not construct request body", e);
} catch (JSONException e) {
throw new FacebookException("could not construct request body", e);
}
Hovering e in Eclipse shows this information:
javax.net.ssl.SSLException: Write error: ssl=0x4f033008: I/O error during system call, Broken pipe javax.net.ssl.SSLException: Write error: ssl=0x4f033008: I/O error during system call, Broken pipe Write error: ssl=0x4f033008: I/O error during system call, Broken pipe [1277468208, 0, 1279934152, 48, 1280860304, 26, 1280860480, 58, 1280859576, 11, 1280859696, 4, 1277492792, 1, 1280859640, 7, 1280233152, 169, 1280233264, 36, 1280230744, 6, 1280236632, 0, 1280236576, 0, 1280238568, 6, 1280238512, 2, 1278731744, 21, 1279835640, 23, 1278097880, 2, 1279841920, 28, 1279843376, 2, 1277300032, 6] null
Is this a bug in the SDK? Did anybody else encounter this? And more importantly, how do I fix it?