Tagged Questions
The httpresponse tag has no wiki summary.
49
votes
2answers
34k views
How to set HttpResponse timeout for Android in Java
I have created the following function for checking the connection status:
private void checkConnectionStatus() {
HttpClient httpClient = new DefaultHttpClient();
try {
String url = ...
12
votes
3answers
3k views
How to implement proper HTTP error handling in .NET MVC 2?
I've been struggling all day to implement error handling in my ASP.NET MVC 2 app. I've looked at a variety of techniques, but none work properly. I'm using MVC2 and .NET 4.0 (started the project ...
12
votes
3answers
30k views
Android JSON HttpClient to send data to PHP server with HttpResponse
I am currently trying to send some data from and Android application to a php server (both are controlled by me).
There is alot of data collected on a form in the app, this is written to the ...
11
votes
2answers
3k views
How to set response filename without forcing saveas dialog
I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:
If the browser is able to render content of the given content-type then it ...
10
votes
3answers
13k views
Uses of content-disposition in an HTTP response header
I have found the following asp.net code to be very useful when serving files from a database:
Response.AppendHeader("content-disposition", "attachment; filename=" + fileName);
This lets the user ...
10
votes
4answers
30k views
HTTP status code 0 - what does this mean in MS XMLHTTP?
I have an HTA (Microsoft HTML application - just an offline HTML + JavaScript application) that is using the standard MS XMLHTTP COM object (Microsoft.XMLHTTP or Msxml2.XMLHTTP depending on version ...
9
votes
4answers
1k views
Some questions about writing on ASP.NET response stream
I'm making tests with ASP.NET HttpHandler for download a file writting directly on the response stream, and I'm not pretty sure about the way I'm doing it. This is a example method, in the future the ...
7
votes
2answers
292 views
HttpRequest/HttpResponse Memory Leak? CF.NET 3.5 WIN CE 6.0
I have tried everything possible to get rid of what I think is a memory leak with the HttpRequest or HttpResponse Classes in the CF.NET 3.5 running on a Win CE 6.0 device. I am using them to ...
7
votes
2answers
4k views
How to programatically set Response.StatusCode different than 200 OK in ASP.NET Application and still serve content to client successfully?
Setting Response.StatusCode = 404 doesn't serve content under neither IE8 nor Chrome? It works in Mozilla though I find it strange!
Do the simplest of things - empty asp.net web application project ...
6
votes
2answers
106 views
Proper HTTP headers for login success / fail responses?
Are there any standards for using HTTP headers for login success / fail responses?
6
votes
2answers
7k views
How to print out returned message from HttpResponse?
I have this code on my Android phone.
URI uri = new URI(url);
HttpPost post = new HttpPost(uri);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(post);
...
6
votes
1answer
2k views
Add Response Header to JAX-RS Webservice
I am trying add some response headers to some of my webservice calls. I wrote my webservice using CXF 2.1.2 and JAX-RS. I need to return an object and I also want to add some headers to the ...
6
votes
5answers
6k views
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 fires) an exception? I've got some logging and this is being listed in the log file...
A ...
5
votes
2answers
62 views
Success with AJAX Status code < 400?
Basically it boils down to, is there any case where it would be bad for me to call the success callback function on status codes under 400?
In looking at the list of status codes for HTTP, I don't ...
5
votes
1answer
281 views
Single request to multiple asynchronous responses
So, here's the problem. iPhones are awesome, but bandwidth and latency are serious issues with apps that have serverside requirements. My initial plan to solve this was to make multiple requests for ...
5
votes
2answers
408 views
What should my expires, cache-control, and pragma HTTP request header fields be set to?
I have a website in which I update the content approximately once monthly. When I check the HTTP request header fields, I get the following output:
Expires: Thu, 19 Nov 1981 08:52:00 GMT
...
5
votes
1answer
882 views
ASP.Net MVC2 (RTM) breaks response filtering - “Filtering is not allowed”
I've just done a test run of upgrading a project to ASP.Net MVC 2 (RTM) in anticipation of the full official .Net 4.0 release coming later this month.
Our application is using a minimizer for our CSS ...
4
votes
1answer
285 views
How to read HTTP response with jQuery ajax from C# TcpListener?
I have created server with TcpListener, which responds to every request as a dummy HTTP. On the client side I have used jQuery Ajax to make a request to this server. Server gets successul request and ...
4
votes
2answers
218 views
Why do we use Response.ClearHeaders()?
I copied a code piece to send files to browser. I don't know why we use the lines written below cause removing these does not make any difference in my development environment.
Response.Clear();
...
4
votes
1answer
181 views
Question regarding browser behavior when a response is sent from a server
Scenario:
The browser submits a HTTP request to a server.
The user simultaneously clicks on a bookmark or on another link on the page resulting in a new request to the server.
The server now ...
4
votes
4answers
548 views
How to store an Http Response that may contain binary data?
As I described in a previous question, I have an assignment to write a proxy server. It partially works now, but I still have a problem with handling of gzipped information. I store the HttpResponse ...
4
votes
3answers
931 views
Google API for Google Docs, requesting a list of documents — 400 Bad Request
After authentication from google servers for google docs, I do a simple getResponse, but I get a 400 Bad Request. I can't understand where am I going wrong. The sample code is, below
private void ...
4
votes
4answers
430 views
What's the proper way to set the Location header for an HTTP 201 response in a Java Servlet application
Consider the following code sending an HTTP 201 "Created" response to the client:
String url = "/app/things?id=42"; // example
response.setStatus(HttpServletResponse.SC_CREATED);
...
4
votes
3answers
2k views
Parsing a XML HttpResponse
I'm trying to parse the XML HttpResponse i get from a HttpPost to a server (last.fm), for a last.fm android app. If i simply parse it to string i can see it being a normal xml string, with all the ...
4
votes
1answer
257 views
Manipulating HTTP Response
my current question is tightly related to this one, but is far more specific. We have to plan a design strategy for the objective described in that question.
We want to do this by rewriting HTML on ...
4
votes
1answer
526 views
Return http 204 “no content” to client in ASP.NET MVC2
In an ASP.net MVC 2 app that I have I want to return a 204 No Content response to a post operation. Current my controller method has a void return type, but this sends back a response to the client as ...
4
votes
3answers
756 views
Specify supported media types when sending “415 unsupported media type”
If a clients sends data in an unsupported media type to a HTTP server, the server answers with status "415 unsupported media type". But how to tell the client what media types are supported? Is there ...
4
votes
2answers
884 views
Downloading Spreadsheets From Google Docs
I am working on an Android app that uses the gdata-java-client to download documents for display only. So far I have an application that authenticates with the services and displays a list of user ...
4
votes
4answers
7k views
setcookie, Cannot modify header information - headers already sent
I am new to PHP, I practised PHP setcookie() just now and failed.
http://localhost/test/index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
...
4
votes
4answers
277 views
What is the proper HTTP response to send for requests that require SSL
I'm designing an RESTful API where some calls are public over HTTP, and some require an API key and encryption over HTTPS. I'm deliberating on what response code should be sent if an HTTP request is ...
4
votes
4answers
840 views
A custom ActionResult for a multi-part http response?
I'd like to respond to an http request with both a txt file and an html page. This way the client can save the file and see a summary of that file's contents via an html page.
Since the file is ...
3
votes
1answer
121 views
How to send SOAP request and Parse SOAP response in XML format in Android?
Am very new to Android apps development. In my new Android app i want to show some data from webservice. This means i have a SOAP message, i need to parse the data from SOAP response. In iPhone app i ...
3
votes
1answer
28 views
Use of HttpResponse.DisableKernelCache
When working in ASP.NET, HttpResponse objects have a DisableKernelCache() method. E.g., a HttpHandler could:
public void ProcessRequest(HttpContext context)
{
...
3
votes
1answer
97 views
How to save file data from POST variable and load it back to response in Python Django?
I have a such problem - I am using Python 2.6 / Django 1.3 and I need to accept as POST variable with key 'f', which contains a binary data. After that, I need to save data in a file.
POST
...
3
votes
4answers
242 views
Encoding problems in ASP when using English and Chinese characters
I am having problems with encoding Chinese in an ASP site. The file formats are:
translations.txt - UTF-8 (to store my translations)
test.asp - UTF-8 - (to render the page)
test.asp is reading ...
3
votes
3answers
591 views
PHP get_headers() alternative
I need a PHP script that reads the HTTP response code for each URL request.
something like
$headers = get_headers($theURL);
return substr($headers[0], 9, 3);
The problem is the get_headers() ...
3
votes
1answer
295 views
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 an HTTP response from a web server.
I have Fiddler 2 (Web Debugging Proxy) installed ...
3
votes
2answers
372 views
Is there a way to complete the post back after writing out a file to the Response?
I have a button that when clicked, will generate a PDF and write it out to the response.
This is the basic structure of the code:
try
{
using(Stream stream = generatePdf())
{
var file ...
3
votes
3answers
547 views
Mocking HTTPResponse in a unit test
I'm trying to create unit tests for some legacy code .
One of the classes that I have to test is called FileDownloader which has just the following one method :
public void Transmit(string fileName, ...
3
votes
1answer
540 views
Returning RESTful response codes in Play
I'm just getting started with REST and I've been reading this post and the mentioned book about REST response codes. When I look at Play's Controller class however, it seems to be limited to ...
3
votes
1answer
77 views
Response.Filter making multiple calls to Write()?
For some time I am using custom Response.Filter for rewrite purposes. Since I never tested this module, I decided to run a few tests and spotted something I did not expect.
I realized that pages are ...
3
votes
5answers
140 views
What exactly does Response.Redirect(“~/…”) put in the HTTP response?
I've just finished reading URL vs. URI vs. URN, in More Concise Terms, and it's really helped understand the distinction between the three terms. Since then I've skimmed the RFC2141 and RFC2616 specs ...
3
votes
3answers
543 views
Setting both error message and body from servlet
I want to write a servlet that will return an http response like so:
HTTP/1.1 500 <short custom message>
Content-Length: ...
<longer custom message>
The reason is that I want a ...
3
votes
1answer
463 views
ASP.NET JavaScriptSerializer requires HttpResponse?
It appears that the System.Web.Script.Serialization.JavascriptSerializer class tries to obtain the HttpResponse for the current request, presumably to apply appropriate character encoding.
However ...
3
votes
2answers
569 views
GZipStream is cutting off last part of XML
I have created an extension method called AddGZip which looks like the following:
public static void AddGZip(this HttpResponse response)
{
response.Filter = new GZipStream(response.Filter, ...
3
votes
1answer
193 views
Random characters on an HTTP response using sockets
I am using sockets to create a POST request to a given server. The response comes back mostly ok, and I'm using an InputStream with an encoding of "UTF-8" to read the response from the server. Most of ...
3
votes
2answers
1k views
How to parse a raw HTTP response?
If I have a raw HTTP response as a string:
HTTP/1.1 200 OK
Date: Tue, 11 May 2010 07:28:30 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=UTF-8
...
3
votes
4answers
3k views
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 stream = new MemoryStream();
try
{
using ...
3
votes
1answer
2k views
Uncompress GZIPed HTTP Response in Java
I'm trying to uncompress a GZIPed HTTP Response by using GZIPInputStream. However I always have the same exception when I try to read the stream : java.util.zip.ZipException: invalid bit length repeat
...
3
votes
2answers
768 views
ASP.NET equivalent of this PHP code?
We have a flash developer who uses calls a file called proxy.php with the querystring ?url="http://feedburner/whatever" to access external data from rss feeds from domains that not by default ...