[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-1352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Oleg Kalnichevski resolved HTTPCLIENT-1352.
-------------------------------------------

    Resolution: Invalid

Arūnas

There is nothing that prevents you from reading from the content stream, 
catching ConnectionClosedException and salvaging whatever content has been 
retrieved so far.

Oleg
                
> "Premature end of Content-Length delimited message body ..." when reading 
> entity.
> ---------------------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-1352
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1352
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>    Affects Versions: 4.3 Beta1
>            Reporter: Arūnas Bendoraitis
>
> Simplified sample code which still causes the error:
> HttpClient httpclient = new DecompressingHttpClient();
> HttpGet httpget = new HttpGet("http://www.shaanig.com/";);
> HttpResponse response = httpclient.execute(httpget);
> String responseString = EntityUtils.toString(response.getEntity());
> Error:
> Exception in thread "main" org.apache.http.ConnectionClosedException: 
> Premature end of Content-Length delimited message body (expected: 113531; 
> received: 15329
>       at 
> org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:179)
>       at 
> org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:199)
>       at 
> org.apache.http.impl.io.ContentLengthInputStream.close(ContentLengthInputStream.java:103)
>       at 
> org.apache.http.conn.BasicManagedEntity.streamClosed(BasicManagedEntity.java:157)
>       at 
> org.apache.http.conn.EofSensorInputStream.checkClose(EofSensorInputStream.java:227)
>       at 
> org.apache.http.conn.EofSensorInputStream.close(EofSensorInputStream.java:174)
>       at java.util.zip.InflaterInputStream.close(InflaterInputStream.java:210)
>       at java.util.zip.GZIPInputStream.close(GZIPInputStream.java:111)
>       at org.apache.http.util.EntityUtils.toString(EntityUtils.java:249)
>       at org.apache.http.util.EntityUtils.toString(EntityUtils.java:288)
> This only happens with http://www.shaanig.com/ , I'm not the owner the host, 
> but I would like to execute GET requests to it. Seems like it can't close the 
> stream.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to