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.

How to create a response message and add content string to it in ASP.NET 5 / MVC 6

In web api 2 we used to do this to get a response with string content: var response = Request.CreateResponse(HttpStatusCode.…

c# asp.net-web-api httpresponse
ContainerRequestFilter ContainerResponseFilter doesn't get called

I am trying to learn jersey by creating a small RESTful service. I want to use the Filters for specific …

rest servlets jersey jax-rs httpresponse
In C, how do you use libcurl to read a HTTP response into a string?

I have homework where I need somehow to compare two HTTP responses. I am writing it on C and I …

c string libcurl httpresponse
When an ASP.NET System.Web.HttpResponse.End() is called, the current thread is aborted?

when a System.Web.HttpResponse.End() is called a System.Thread.Abort is being fired, which i'm guessing is (or …

asp.net httpresponse thread-abort
Checking HttpResponse OK (200) with Selenium WebDriver

I am using Selenium Remote WebDriver. I read all links from csv file and run test against those links. But …

selenium-webdriver httpresponse selenium-grid
Stream directly to response output stream in handler method of Spring MVC 3.1 controller

I have a controller method that handles ajax calls and returns JSON. I am using the JSON library from json.…

spring spring-mvc httpresponse
Is it possible to return an HttpResponse in django with text & a json object?

In my view function, I'd like to return a json object (data1) and some text/html (form). Is this possible? …

django django-views httpresponse
django: raise BadRequest as exception?

Is it possible to raise BadRequest as exception in django? I have seen that you can raise a 404 [1]. Use case: …

python django exception-handling httpresponse
Measuring the HTTP response time with requests library in Python. Am I doing it right?

I am trying to induce an artificial delay in the HTTP response from a web application (This is a technique …

python-2.7 python-requests httpresponse roundtrip elapsed
How can I get access to the Angular 2 http response body without converting it to string or json?

I would like to copy a REST response into a blob but I am unable to do some because blob() …

rest angular blob httpresponse angular2-http