Tagged Questions
The response tag has no wiki summary.
16
votes
6answers
5k views
Remove Server Response Header IIS7
Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right ...
14
votes
7answers
1k views
What is the shortest perceivable application response delay?
A delay will always occur between a user action and an application response.
It is well known that the lower the response delay, the greater the feeling of the application responding instantaneously. ...
13
votes
3answers
32k views
jquery autocomplete with json response
im getting response in json, but this wont parse the json response. what m i doing wrong? i could'nt find anything on doc http://docs.jquery.com/Plugins/Autocomplete
...
12
votes
4answers
261 views
What's the minimum lag detectable by a human? [closed]
Possible Duplicate:
What is the shortest perceivable application response delay?
I've been profiling some JavaScript UI code because it feels a little laggy. So far, I've found some ...
11
votes
5answers
3k views
if-modified-since vs if-none-match
What could be the difference between if-modified-since and if-none-match? I have a feeling that if-none-match is used for files whereas if-modified-since is used for pages?
9
votes
6answers
2k views
HttpResponse.End vs HttpResponse.Close vs HttpResponse.SuppressContent
Within an ASPX page, I want to end the response at specific points (not due to an error condition), depending on code path, so that nothing else is sent back down the stream.
So naturally used:
...
8
votes
3answers
3k views
BinaryWrite exception “OutputStream is not available when a custom TextWriter is used” in MVC 2 ASP.NET 4
I have a view rendering a stream using the response BinaryWrite method. This all worked fine under ASP.NET 4 using the Beta 2 but throws this exception in the RC release:
"HttpException" , ...
8
votes
12answers
13k views
JQuery - Storing ajax response into global variable
Im still somewhat of a newbie on jQuery and the ajax scene, but I have an $.ajax request performing a GET to retrieve some XML files (~6KB or less), however for the duration the user spends on that ...
7
votes
3answers
4k views
How to customize to_json response in Rails 3
I am using respond_with and everything is hooked up right to get data correctly. I want to customize the returned json, xml and foobar formats in a DRY way, but I cannot figure out how to do so using ...
6
votes
3answers
557 views
Retrieving response from remote server after uploading a file in iframe
I have a form that uploads a file in an firame to a remote server. As a result at the submission url server returns json data with the result of operation, which my iframe catches.
{'result': 'true' ...
6
votes
2answers
291 views
WSGI request and response wrappers for Python 3
Are there WSGI request and response wrappers for Python 3?
WebOb looks nice (although there is some critique), but it seems to be written in Python <3. Werkzeug seems also to be written in Python ...
6
votes
5answers
2k views
In Rails, how do you functional test a Javascript response format?
If your controller action looks like this:
respond_to do |format|
format.html { raise 'Unsupported' }
format.js # index.js.erb
end
and your functional test looks like this:
test "javascript ...
6
votes
1answer
4k views
JAX/Jersey Custom error code in Response
In Jersey, how can we 'replace' the status string associated with a known status code?
e.g.
return Response.status(401).build();
generates a HTTP response that contains:
HTTP/1.1 401 Unauthorized
...
5
votes
2answers
786 views
No response from MediaWiki API using jQuery
I've tried to get some content from Wikipedia as JSON:
$.getJSON("http://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvprop=content&titles="+title+"&format=json", ...
5
votes
4answers
4k views
Why does HttpUtility.UrlEncode(HttpUtility.UrlDecode(“%20”)) return + instead of %20?
I'm having a problem with a file download where the download is replacing all the spaces with underscores.
Basically I'm getting a problem here:
Response.AddHeader("Content-Disposition",
...
5
votes
2answers
6k views
How to return XML in an Zend Framework Application
I'm having problems returning XML in my ZF Application.
Below is the code I have:
<?php
class ProjectsController extends Gid_Controller_Action
{
public function xmlAction ()
{
$content = ...
5
votes
2answers
3k views
Is it necessary to set the Content-Length in my response header?
I'm reviewing some legacy code and I've found a bug that causes the response to sit indefinitely.
Here's the basic idea:
Response.Content-Type = "application/octet-stream"
...
5
votes
5answers
8k views
C# Asp.net write file to client
I hope this is a quick question I hope. I need to write some reports and then have the user prompted to save it to his/her local machine. The last time I did this I wrote a file to the webserver and ...
4
votes
3answers
139 views
Soap response, not well formed XML, no XOP parts located, using WSE
I am consuming a web service in which I send off a request with an attachment and we receive a response from the server with various information. I have documented some problems with getting the ...
4
votes
1answer
56 views
How to response a DNS request when only part of the queries is answered?
Some DNS request may contain multiple queries, and my server is NOT Recursion Available, if i can only answer part of the queries, how do i respond?
To be more specify, how to set the RCODE?
4
votes
1answer
278 views
Returning an String Array from a Java Servlet to jQuery
I'm currently working on a web application that displays a slideshow of images using the Cycle plug-in for jQuery. For ease of use, I'm making the application configurable, allowing someone to change ...
4
votes
3answers
218 views
Active Resource responses, how to get them
I have an Active Resource that I query for data. It returns records, counts, whatever I ask for.
eg: product = Product.find(123)
The response headers supposedly contain a custom attribute, say ...
4
votes
1answer
292 views
How to get rid of charset on response header in Rails
I am trying to make a file download controller, but unfortunately rails seems to be hell bent on not letting me remove charset from header
Content-Type: application/x-octet-stream; charset=utf-8
I ...
4
votes
2answers
306 views
Is there a java utility to produce http multi-part responses?
I am building a web-service that returns a multipart response. I know the format for constructing a multi-part response; and I will build my own tools if I can't find existing tools.
Perhaps I ...
4
votes
2answers
862 views
GWT RPC response header
Is there any way to read the header information received by GWT client, on the RPC response?
Response header
Server Apache-Coyote/1.1
Set-Cookie ...
4
votes
2answers
221 views
Synchrony on web service and browser calls
I have a HttpHandler which queries 3 web services within a single request and store the results in a single cookie.
As you would imagine, the results collide. Here is how:
Process is as follows:
...
4
votes
3answers
3k views
Dynamic page titles in Symfony 1.4
I'm wondering if anyone's got any good advice/experience regarding setting dynamic meta titles in Symfony?
Currently, the solution I'm aware of would be to use the following code to set a title ...
4
votes
3answers
357 views
How can my Django views know which template to render, or whether to return JSON?
Our site can be accessed from a full browser, from mobile browsers, and from a custom iPhone app. Since the logic is mostly the same regardless of the client, we're using the same views to process all ...
4
votes
1answer
694 views
ASP.net memory usage during download
On an ASP.net site at my place of work, the following chunk of code is responsible for handling file downloads (NOTE: Response.TransmitFile is not used here because the contents of the download are ...
4
votes
5answers
2k views
RESTful HTTP response codes
I'm developing a simple RESTful API, and utterly in love with how minimalistic it is. But I'm uncertain as to the correct HTTP response codes for various situations:
Incorrectly formed query
...
4
votes
5answers
191 views
Responding so the browser does not do anything - is it possible?
Is it possible to make such a HTTP response, that the browser ignores it and keeps showing the previously displayed page?
I mean the following scenario:
a) user clicks something
b) some POST goes ...
4
votes
3answers
3k views
Specifying filename for dynamic PDF in asp.net
How can I specify the filename when dumping data into the response stream?
Right now I'm doing the following:
byte[] data= GetFoo();
Response.Clear();
Response.Buffer = true;
Response.ContentType = ...
3
votes
2answers
134 views
Do we need to close the System.Net.WebRequest's ResponseStream?
I was wondering will I end up having any unclosed streams from this code:
Public Function [Get](ByVal url As String) As String
Using reader = New ...
3
votes
3answers
320 views
Putting detailed REST error message in HTTP Warning header, good/bad idea?
We are developing a standard REST service using HTTP status codes as its response code if something went wrong. (e.g. invalid user input would return "400 Bad Request" to the client)
However, we ...
3
votes
2answers
569 views
FFMPEG hangs the whole nodejs process
What I am trying to do is to make a thumbnail of a video using ffmpeg. The video data is received in a HTTP request and then piped to ffmpeg. The problem is that once the ffmpeg child process exits I ...
3
votes
1answer
387 views
C# Asp Net Problem with download in Chrome 12
I have a problem in my project.
I have some code for downloading content as: .doc, .zip etc
It was working fine until chrome update for version 12, after that the browser shows an error message: ...
3
votes
1answer
173 views
Node.js : How can I Output Data Before I end the Response?
Here is my snippet I tested it in Chrome 11, and Firefox 4:
var http = require('http');
http.createServer(function(request, response){
// Write Headers
response.writeHead(200);
// Write ...
3
votes
2answers
1k views
Get response file use ExtJS
I use ExtJS to build the client-side for my program. There's a situation that I want to send an Ajax request to server, and get the response file (binary file, not plain text file, i.e XLS or PDF). ...
3
votes
2answers
598 views
Response.AddHeader in an ascx file
Is it possible to use the Response.AddHeader particularly Im trying to use the "Refresh" of it. I need it to pause before it redirects but the place where the code is being ran is in a ASCX in the ...
3
votes
1answer
456 views
JQuery POST request transforming into OPTIONS. Why?
I explicitly specify a POST and I don't see the post data in the Request and more over specifies it has a OPTIONS.
The response should be a HTML specifying matching users to Query in table format.
I ...
3
votes
1answer
338 views
Rails3 Rack response - undefined method response.body
def call(env)
status, headers, response = @app.call(env)
if response.is_a? Array
puts response.inspect
else
puts response.class.to_s
end
[status, headers, response]
...
3
votes
2answers
3k views
Parse KSoap2 response in android
So I managed to call a webservice using KSoap2 in android but I can't find a way to parse the response...
So here's what I receive from the webservice
anyType{
...
3
votes
2answers
215 views
Threading in Rails - do params[] persist?
I am trying to spawn a thread in rails. I am usually not comfortable of using threads as I will need to have a in-depth knowledge of Rails' request/response cycle, yet I cannot avoid using one as my ...
3
votes
1answer
145 views
how does URL rewrite work in plain english
I have read a lot about URL rewriting but I still don't get it.
I understand that a URL like
http://www.example.com/Blog/Posts.php?Year=2006&Month=12&Day=19
can be replaced with a ...
3
votes
1answer
611 views
In Java, how to set the header of a Restlet Response?
I can't seem to figure out how to add headers to my restlet response. When I look at the available methods in the Response object, all I see is setStatus, setEntity, and setAttributes but none of ...
3
votes
3answers
1k views
automatic utf-8 encodeing in node.js http client
Hi there i am trying to load an XML from a remote host useing node.js.
The problem is that german "umlaute" like "รค" are broken. Like in the browser this usualy is a simple encoding problem. But since ...
3
votes
3answers
985 views
Redirecting to another page after Response.End() has been called in C#
I am exporting a gridview to excel, using .Net 4.0 in a web application, on page load and need for the file to be generated and then the page to be redirected to the calling page. I am running into ...
3
votes
2answers
1k views
Is there any way to read cookies from the response object in Java?
It doesn't seem that HttpServletResponse exposes any methods to do this.
Right now, I'm adding a bunch of logging code to a crufty and ill-understood servlet, in an attempt to figure out what ...
3
votes
3answers
160 views
Generate an e-mail to be downloaded by client and sent from their outlook account
One of the requirements for the application that I'm working on is to enable users to submit a debugging report to our helpdesk for fatal errors (much like windows error reporting).
I've been told ...
3
votes
2answers
229 views
django calling no request view function in template
I am making some view functions to calculate the rank of one user in a community.
My problem is that i want to display the rank afferent to each user, in its profile, and i don't know how, since i ...