You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Francois-Xavier Bonnet (JIRA)" <ji...@apache.org> on 2012/12/12 17:35:21 UTC

[jira] [Updated] (HTTPCLIENT-1274) NullPointerException on 304 Not Modified response

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

Francois-Xavier Bonnet updated HTTPCLIENT-1274:
-----------------------------------------------

    Attachment: TestCachingExec.patch.txt

Here is a unit test that reproduces the problem.
                
> NullPointerException on 304 Not Modified response
> -------------------------------------------------
>
>                 Key: HTTPCLIENT-1274
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1274
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: Cache
>    Affects Versions: Snapshot
>            Reporter: Francois-Xavier Bonnet
>            Priority: Minor
>         Attachments: TestCachingExec.patch.txt
>
>
> When sending a conditional request (If-None-Match for example) and the backend responds with a 304 Not Modified, the response contains an HttpEntity but you get a NullPointerException whenever to try to call one of the methods :
> - org.apache.http.HttpEntity.getContent()
> - org.apache.http.HttpEntity.writeTo(OutputStream)
> I would expect getEntity() to return null if there is no entity in the response.
> As a workaround I can test on the contentLength before calling these methods and call EntityUtils.consume(entity) to get sure that the connection is released but this makes things more complicated.

--
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: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org