Tagged Questions

3
votes
3answers
1k views

Get Size of HTTP Response in Java

I would like to know how much data was sent in response to a certain http-request. What I currently do is this: HttpURLConnection con = (HttpURLConnection) feedurl.openConnection(); //check the ...
1
vote
1answer
264 views

How to make JAXWS send content-length header on SOAP responses

Basically I made a Webservice using JAXWS. It uses SOAP and works. However on some request some clients crash/error, it seems to be linked to the fact the JAXWS webservice does not send the ...
1
vote
1answer
175 views

How to configure HTTPServer to use content length and not transfer encoding: chunked?

I'm using java's HTTP Server object with web service implemeted by WebServiceProvider. I see that no matter of the client request, the answer is chunked and i need it to be with content length. so i'm ...
0
votes
3answers
296 views

Java, HttpURLConnection and setting the content length

I'm setting the length of the content in my HttpURLConnection, for a PUT. urlConnection.setRequestProperty("Content-Length", "" + responseJSONArray.toString(2).getBytes("UTF8").length); The actual ...