Top "Httpresponse" questions

An HTTP response is a network message which is made of a body and metadata in the form of headers, according to HTTP specification.

Configuring response timeout in Apache JMeter

I am trying to check if a particular HTTP request's response time is over 30 seconds, and if it is, then …

timeout jmeter httpresponse load-testing performance-testing
Why are .docx files being corrupted when downloading from an ASP.NET page?

I have this following code for bringing page attachments to the user: private void GetFile(string package, string filename) { var …

asp.net httpresponse docx
Unable to locate FromStream in Image class

I have the following code: Image tmpimg = null; HttpWebRequest httpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url); HttpWebResponse httpWebReponse = (HttpWebResponse)httpWebRequest.GetResponse(); Stream …

c# httpresponse http-request
How do I use Fiddler to modify the status code in an HTTP response?

I need to test some client application code I've written to test its' handling of various status codes returned in …

http fiddler httpresponse http-status-codes
Express 4.14 - How to send 200 status with a custom message?

How can I send status and message in express 4.14? For: res.sendStatus(200); I get OK on my browser but I …

node.js express httpresponse
HttpResponse using android issue: execute always causes exception?

I've been working on an Android project and I'm at a point where I want to ask some API for …

java android android-asynctask httpresponse
The best way to inspect HTTP response headers with Selenium

I need the best way to inspect HTTP response headers with Selenium. I looked around the Selenium docs and didn't …

http selenium http-headers httpresponse
Rest API calls with PowerApps

I am playing around with Microsoft PowerApps and Microsoft Flow. I am trying to figure out how to make API …

api httpresponse powerapps
Response.TransmitFile Not downloading, and throwing no Errors

I'm currently using a HttpResponse to download files from my Server. I already have a couple functions being used to …

c# httpresponse text-files transmitfile response.transmitfile
HTTP GET Request Status 204 Vs 404

I have 2 resources User and Album. An user has a list of albums. To get albums there are 2 REST API. …

rest http-status-code-404 httpresponse