Closed GoogleCodeExporter closed 9 years ago
Hi.
A much simpler approach where only the getContent() method of JdkHttpTransport
is changed, ref below from line 191:
public InputStream getContent() throws IOException {
InputStream in;
try {
in = connection.getInputStream();
} catch (IOException e) {
in = connection.getErrorStream();
if (in == null) {
throw e;
}
}
this.successful = connection.getResponseCode() < 400;
...
See attached.
Regards
Jesper Udby
Original comment by jesperudby
on 5 Jan 2013 at 8:41
Attachments:
Included in 23
Original comment by jesperudby
on 31 Jan 2013 at 8:30
fixed in 23
Original comment by jesperudby
on 8 Feb 2013 at 6:37
Original issue reported on code.google.com by
jesperudby
on 5 Dec 2012 at 9:06Attachments: