2
votes
3answers
59 views
Get Size of HTTP Response in Java
Hi,
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.openCon …
1
vote
4answers
198 views
Simulate Incorrect Content-Length Headers for HTTP in C#
We are building a comprehensive integration test framework in C# for our application which exists on top of HTTP using IIS7 to host our applications.
As part of our integration te …
1
vote
1answer
118 views
[ASP.NET] IIS7 downloading file length
I've following code for file download:
FileInfo fileInfo = new FileInfo(filePath);
context.Response.Clear();
context.Response.ContentType = "application/o …
1
vote
4answers
201 views
Content-Length header always zero
I set a header in the following way:
header('Content-Length: ' . filesize($strPath));
On my PC with ZendServer it works fine and I can download a file with the correct file size …
