Tagged Questions

62
votes
6answers
25k views

How to encode the filename parameter of Content-Disposition header in HTTP?

Web applications that want to force a resource to be downloaded rather than directly rendered in a Web browser issue a Content-Disposition header in the HTTP response of the form: ...
16
votes
7answers
858 views

Asking browsers to cache as aggressively as possible

This is about a web app that serves images. Since the same request will always return the same image, I want the accessing browsers to cache the images as aggressively as possible. I pretty much want ...
8
votes
1answer
259 views

Special Characters in Content-Disposition filename

This thread is a duplicate of How to encode the filename parameter of Content-Disposition header in HTTP? But since this question was asked a long time ago and there is still no satisfying answer (in ...
7
votes
1answer
206 views

Browser displays raw image data of jpeg. What headers should I make sure to have in the response?

I seem to have run into an interesting problem where the browser happily displays an image generated by my Spring MVC web application as long as the URL to my controller is set as SRC of an IMG tag, ...
7
votes
5answers
733 views

Can HTTP headers be too big for browsers?

I am building an AJAX application that uses both HTTP Content and HTTP Header to send and receive data. Is there a point where the data received from the HTTP Header won't be read by the browser ...
7
votes
9answers
6k views

Tool to view response headers

What is the best way to view the HTTP response headers from a request against a particular URL? Telnet or is there some other really good command or tool?
5
votes
3answers
1k views

Size of uploaded file

Do web browsers send the file size in the http header when uploading a file to the server. And if that the case, then, is it possible to refuse the file just by reading the header and not wait for the ...
2
votes
3answers
679 views

Getting MSISDN from mobile browser headers

What is the best way of going about this? I need to get MSISDN data from users accessing a mobisite to enhance the user experience. I understand not all gateways would populate the headers entirely, ...
2
votes
1answer
320 views

Django: Creating a unique identifier for a user based on request.META values

I'm looking at creating an anonymous poll. However, I want to prevent users from voting twice. I was thinking of hashing some request.META values like so: from hashlib import md5 request_id_keys = ( ...
2
votes
2answers
460 views

Browser Cache: If we change something force user to get new version, not local cached version

We make changes often on our website (which uses caching) and sometimes user don't know to refresh a page in order to get the newest copy of it. If we do update a page, how can we force the users ...
2
votes
1answer
729 views

IE accept headers changing, why?

I am trying to debug an issue on my server side and I believe it has to do with the accept headers that are being sent from the browser. Here is my question, why would Internet Explorer change ...
1
vote
4answers
101 views

JavaScript - How to set request header for a browser GET

If we do window.location = "http://MyApi.com/Pdf";, browser does a GET of the URL http://MyApi.com/Pdf. But if we want to set authentication header of the request before doing GET of the URL because ...
1
vote
1answer
83 views

Force browsers to refresh cached, etaged images

User generated images on my site are served up by giving them a src like this: userImage.ashx?id={UserId}&type=avatar In the response from the ashx file, I set the etag header. When a user ...
1
vote
1answer
249 views

how to open filecontentresult without window prompt in any browser

I have filecontentresult from controller action method as shown ,contents is byte[] type FileContentResult file= new FileContentResult(contents, "/PDF"); ...
1
vote
2answers
195 views

When browser sets the “referrer” in HTTP Request header?

I have a login page and users from different domains are redirected to this page for the purpose of SSO. I use the referrer HTTP Header field to know where the user has come from, thus on successful ...
1
vote
1answer
102 views

Intercepting image load request of the browser

I would like to know if there is a way to intercept the image loading requests of a browser and add some request headers expected by the server. The actual scenario is this. The web app sends an XHR ...
1
vote
2answers
92 views

maximum http request in a page

How many http request does a browser can handle in a single html page. Their is a popular saying that browser can handle only a certain http request from a single domain and so its better to create ...
1
vote
2answers
51 views

How browsers decide which content is HTML

I used to believe that CONTENT-TYPE header of a HTML page tells the browser that the contents are html or not. I have a proxy coded where I was checking content-type has text/html to decide if its ...
1
vote
1answer
47 views

How do browsers behave if a document is delivered with no Expires or Cache-Control headers?

If a document is delivered with no Expires or Cache-Control headers, how long will browsers cache the document?
1
vote
3answers
171 views

How does the browser/server work together to display an html page?

I get this question a lot =/ But I only know how to answer it at a very high level. From the minute a user enters a URL and hits enter, what happens on the client and server side, and how do ...
1
vote
2answers
440 views

Multiple Set-cookie headers in HTTP

I'm writing a small class that acts as a very basic HTTP client. As part of a project I'm working on, I'm making it cookie aware. However, it's unclear to me what happens when my client receives ...
1
vote
2answers
1k views

How to force client browser to download images from server rather using its cache

Assume a simple aspx data entry page in which admin user can upload an image as well as some other data. They are stored in database and the next time admin visits that page to edit record, image data ...
1
vote
1answer
395 views

Browser tool to calculate & set authorization headers?

Are there any Firefox add-ons/extensions that would create the correct necessary values for Authorization HTTP Header, given a username/password dataset? I have some code that's calculating the value ...
1
vote
1answer
589 views

HTTP Bad Request - Browser Hook

I am hooking firefox's send and WSARecv. Send should remove the gzip header (=> Accept-Encoding: none) and WSARecv hook shall edit the data. At the moment the WSARecv function doesn't change any ...
1
vote
2answers
1k views

customizing default values for HTTP request headers in Internet Explorer

In Firefox, we can customize the default values for HTTP headers, let's say for changing the "Accept-Encoding" header in an HTTP request (type "about:config" in browser and serach for preference ...
1
vote
1answer
3k views

Disable Page Cache to force page load with browser back button

I have an asp.net website that is using update panels on the page that i cant get to reload from the server. I have this for the disable page cache on the master page. ...
0
votes
0answers
37 views

Browser does not listen to headers sent by PHP for cache, what can be changed?

I have a systen in place where I have two-layered cache on the website. Every request checks for cache on the web server and if it finds the generated page that has been cached, it returns the cache ...
0
votes
2answers
57 views

Why do I need to use URL Fingerprinting with far-future expires headers on static assets?

Everything I read about "expires" headers (http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/, eg) indicates that when taking advantage of caching in this manner, you ...
0
votes
1answer
48 views

How to use browser caching effectively for images?

Which combination of http headers can achieve the following? I would like static content like images to be cached for as long as possible, but if those images change on the server, I would like the ...
0
votes
2answers
35 views

Information in the HEADER which can not be changed/altered

What are the filed in the header which will be always present [99% atleast] and can not be altered ?
0
votes
3answers
89 views

Why are my files not served from the cache?

I think that I configured caching correctly for my domain but still both Fiddler and Firefox webdeveloper show me that all images, css and js are loaded on every request. This is the response header ...
0
votes
3answers
814 views

How can I set HTTP headers in Glassfish server

I want to set the "Expires" HTTP response header when my Glassfish server serves static resources like Javascript and image files. (because to force the browser to cache them) How can I do this in ...
0
votes
2answers
152 views

How to serve files for download? Trying to serve files for users to view/download, but server responds with wrong Content-Type

I have a functionality on a website in which the user logs in and then a list of files available for download is showed. When he clicks on the file, it should show a download dialog with the options ...
0
votes
1answer
73 views

Help with header() php

Hello I want to refresh a script from the server when back button is pressed. For that, i'm using this code: header( "Last-Modified: " . gmdate( "D, j M Y H:i:s" ) . " GMT" ); header( "Expires: " . ...
0
votes
1answer
169 views

How can I test my browser ignoring Location headers?

I want to test a site with my Firefox ignoring Location: headers like this example in PHP. header('Location: another-page.php'); Is there a plugin available to do this, or any other method? Would ...
0
votes
3answers
448 views

What is the HTTP_PROFILE browser header and how is it used?

I've just come across the HTTP_PROFILE header that seems to be used by mobile browsers to point to an .xml document describing the device's capabilities. Doing a Google search doesn't turn up any ...
0
votes
3answers
4k views

Is there any way to modify the HTTP headers for IE6?

I need to be able to modify the HTTP headers for Internet Explorer for testing purposes. Basically, I want to achieve the exact same thing that the Modify Headers plugin for Firefox does.
0
votes
2answers
112 views

capture details from external web page

I'm wondering if it's possible to capture details from the web page that a user previously visited, if my page was not linked from it? What I am trying to achieve is to allow users to my site to find ...
0
votes
1answer
158 views

getting a download prompt due to response mixed up from two requests

I have 4 iframes in my page whose src's change as I scroll down my web page. The faster I scroll the src's change more frequently. If I scroll fast enough I get a download prompt in FF. The ...