active questions tagged http-header-fields - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:38:55Zhttp://stackoverflow.com/feeds/tag/http-header-fieldshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1792611/reliable-way-to-determine-an-active-domain-name-using-curl0Reliable way to determine an active domain name using cURL?Alex Mcp2009-11-24T20:08:44Z2009-11-24T22:24:16Z
<p>I'd like to run checks to see if a given URL is registered or not. As a simple proxy for testing if it's registered, I was going to check HTML response codes. 200, 300 probably == registered, 4xx probably == not registered.</p>
<p>I understand that there might be holes in this logic. My question is if cURL has a way to return the HTML response code neatly? I currently can print out the entire header, and am wondering if I need to parse out the bit I want on my own, or if it can return the whole header as an array.</p>
<p>A direct answer or a great alternative would both be welcome.</p>
http://stackoverflow.com/questions/1781579/how-to-tell-when-a-http-web-page-has-changed-when-it-is-of-type-html-text0how to tell when a HTTP web page has changed when it is of type html/text?Greg2009-11-23T07:25:02Z2009-11-24T03:56:12Z
<p>Hi, </p>
<p>I'm trying to work out the algorithm to tell if non-binary files on the web have changed or not. I was going to go with: </p>
<ul>
<li>LastModified datetime from header, and then if these aren't present fallback to</li>
<li>ContentLength from header</li>
</ul>
<p>I'm finding however that for alot of websites the LastModified for the HTML pages are actually just using the current DateTime, hence the approach doesn't work (i.e. would lead to an indication that the page is always changing) I think...?</p>
<p>What would be a good algorithm then? How about?</p>
<pre><code>IF response.ContentType.StartsWith("text/html") <== or should this just be "text"
THEN:
Check based on comparing text content before & after
ELSE:
IF LastModified dates are OK
Compare based on LastModified dates
ELSE
Compare based on ContentLength
</code></pre>
<p>thanks</p>
http://stackoverflow.com/questions/1782885/serving-png-images-over-http-to-three20-iphone-app0Serving PNG images over http to Three20 iPhone apppetert2009-11-23T12:32:47Z2009-11-23T14:47:34Z
<p>I'm trying to serve up png images from a Linux (c++ / Qt4.5.x) server daemon to an iPhone application that is using the Three20 framework - specifically I want to use the TTThumbsViewController view.</p>
<p>I managed to make any web browser view images with the following returned in my daemon when it "GET"s a request:</p>
<pre><code>QTextStream os(socket);
os.setAutoDetectUnicode(true);
QByteArray base64 = array.toBase64();
os << "HTTP/1.1 200 Ok\r\n"
"Host: software.local\r\n"
"\r\n"
"<html>"
"<body>"
"<img src=\"data:image/png;base64," << base64 << "\" />"
"</body>";
</code></pre>
<p>where "array" is a png's image data; I'm typing something like:</p>
<pre><code> http://software.local:8080/test.png
</code></pre>
<p>in to the browser to view the image.</p>
<p>When I try and specify the same URL in my photo source class with something like</p>
<pre><code>[MockPhoto alloc]
initWithURL:@"http://software.local:8080/test.png"
smallURL:@"http://software.local:8080/test.png"
size:CGSizeMake(480, 320)] autorelease],
...
</code></pre>
<p>nothing is returned or displayed?</p>
<p>My question is really - if I put say test.png in a suitable directory on the Linux PC and start a web server (apache), then browse to "http://software.local/test.png I see the image as above, but the image was not embedded in the http header? I really can't figure out what the header should be to get this behaviour. If I set the URL in the above iPhone code so it loads the png from the apache server I see it in the TTThumbsViewController.</p>
<p>Any help would great, or better way to do this - I only have basic http experience, as you can see. </p>
http://stackoverflow.com/questions/579426/wsgi-byte-ranges-serving4WSGI byte ranges servingmyroslav2009-02-23T21:22:48Z2009-11-23T14:25:59Z
<p>I'm looking into supporting <a href="http://en.wikipedia.org/wiki/Byte%5Fserving" rel="nofollow">HTTP/1.1 Byte serving</a> in WSGI server/application for:</p>
<ul>
<li>resuming partial downloads</li>
<li>multi-part downloads</li>
<li>better streaming</li>
</ul>
<p><a href="http://www.python.org/dev/peps/pep-0333/#other-http-features" rel="nofollow">WSGI PEP 333</a> mentions that WSGI server may implement handling of byte serving (from <a href="http://tools.ietf.org/html/rfc2616" rel="nofollow">RFC 2616</a> section 14.35.2 defines Accept-Range/Range/Content-Range response/request/response headers) and application should implement it if announces the capability:</p>
<blockquote>
<p>A server may transmit byte ranges of
the application's response if
requested by the client, and the
application doesn't natively support
byte ranges. Again, however, the
application should perform this
function on its own if desired.</p>
</blockquote>
<p>I've performed some Googling but found little information upon which of the available WSGI servers/middleware/applications implement Byte-Ranges? Does anyone has an experience in the field and can hint me place to dig further?</p>
<p>EDIT: Can anyone comment, how I can enhance the question to be able to find an answer?</p>
http://stackoverflow.com/questions/1778116/selectively-cache-js-and-png-files-over-https1Selectively cache .js and .png files over https?LuckyLindy2009-11-22T07:39:15Z2009-11-22T17:21:19Z
<p>We are creating a large secure back office web application in ASP.NET. All access to the site is over https connections, and we'd like to either turn off caching for pages or set caches to expire quickly. </p>
<p>However, the site uses quite a few images and largish javascript files/libraries. Is there a way to selectively cache certain files or file types so they are not being reloaded all the time? </p>
http://stackoverflow.com/questions/1766183/setting-http-headers-form-a-firefox-extension1Setting HTTP Headers form a Firefox Extensionluisgo2009-11-19T20:09:04Z2009-11-22T04:42:20Z
<p>How can I set HTTP headers in my firefox extension?</p>
<p>I'll make it so these are only sent while hitting my site so I can detect if the plugin is installed or not and not promote the plugin if it is.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/970798/what-does-this-configuration-in-apache-mean0what does this configuration in apache mean?Shore2009-06-09T15:29:16Z2009-11-21T20:00:02Z
<pre><code>Header append Vary User-Agent env=!dont-vary
</code></pre>
<p>Can anyone give a detailed explanation for this?</p>
http://stackoverflow.com/questions/1773386/how-to-suppress-remove-php-session-cookie0How to suppress/remove PHP session cookieiBobo2009-11-20T21:34:46Z2009-11-21T00:06:13Z
<p>I need to suppress an already set session cookie header, but I cannot find any way to do this.</p>
<p><strike>Why?<br>
I need to make an image, sent by a PHP script, cacheable by the end user; this image is used to track if a newsletter has been read by the receiver, so if the image is requested I know the newsletter has been read. I only need to know when the newsletter gets opened for the first time, the subsequent requests can be ignored. The problem is that, even if I properly set the Expire and Cache-Control headers, the image is requested every time the user opens the newsletter--only that image used for the tracking--basically because it's not cached by the user. I used this <a href="http://www.ircache.net/cgi-bin/cacheability.py" rel="nofollow">tool</a> to understand why the URL is not cacheable, and it says because of the cookie sent.</p>
<p>What I want to avoid is the user seeing a delay on the load of the tracking image.</strike></p>
<p>So I have a <code>session_start()</code> in my website init function, that I don't want to remove, because the website is big and complicated, and making some radical change like starting the session only if needed (one of the solutions I envisioned) is not desirable. Calling <code>session_start()</code> sets the <code>Set-Cookie:</code> header with the <code>PHPSESSID</code> cookie, and I need to remove it. Reading from the <code>header()</code> page on php.net I tried setting it with an empty value like this</p>
<pre><code>header('Set-Cookie:');
header('Set-Cookie:', true);
header('Set-Cookie: ');
header('Set-Cookie: ', true);
</code></pre>
<p>before and after a call to <code>session_write_close()</code>, but all I obtained is that the user receives a <code>Set-Cookie:</code> header, without any value, exactly as written in the <code>header</code> function argument.</p>
<p>I must say I'm still using PHP 5.2, so I cannot use the <code>header_remove()</code> function I see in the manual, and lighttpd 1.4.24.</p>
<p><strong>EDIT:</strong> so, it seems the tool I used to check my headers is not that good. I looked at the headers with <code>curl --head</code> and saw the headers below.</p>
<pre><code>HTTP/1.1 200 OK
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=qn3ms55nvst2717e7b73qqu445; path=/
Last-Modified: Sun, 29 Mar 2009 21:53:36 GMT
ETag: "cb1dffff8c10db7b0a88794b1453cab8"
Expires: Sun, 20 Dec 2009 23:28:07 GMT
Cache-Control: private, max-age=2592000
Pragma: no-cache
Content-Type: image/png
Content-Length: 1322
Date: Fri, 20 Nov 2009 23:28:07 GMT
Server: lighttpd/1.4.24
</code></pre>
<p>As you see it is set a <code>Pragma: no-cache</code>. The tool I used said that the <code>Pragma</code> header is not used, but it was wrong. I tried setting <code>Pragma: cache</code>, and it made the mail client cache the image.</p>
<p>I made another discovery, maybe the impossibility of unsetting the <code>Set-Cookie</code> header is because of lighttpd, since I cannot remove the <code>Pragma</code> header using <code>header('Pragma:')</code>. Looking forward to PHP 5.3. Can someone using Apache confirm that the above <code>header</code> call removes the <code>Pragma</code> header?</p>
<p>Thanks txyoji for the enlightening comment :-)</p>
<p>At this point it seems this question is here only to confirm lighttpd cannot remove headers by setting an header without value.</p>
http://stackoverflow.com/questions/1709711/using-python-selenium-best-tool-for-the-job-to-get-uri-of-image-requests-generate0Using Python/Selenium/Best Tool For The Job to get URI of image requests generated through JavaScript?Zachary Burt2009-11-10T17:28:48Z2009-11-20T15:18:29Z
<p>I have some JavaScript from a 3rd party vendor that is initiating an image request. I would like to figure out the URI of this image request.</p>
<p>I can load the page in my browser, and then monitor "Live HTTP Headers" or "Tamper Data" in order to figure out the image request URI, but I would prefer to create a command line process to do this.</p>
<p>My intuition is that it might be possible using python + qtwebkit, but perhaps there is a better way.</p>
<p>To clarify: I might have this (overly simplified code).</p>
<pre><code><script>
suffix = magicNumberFunctionIDontHaveAccessTo();
url = "http://foobar.com/function?parameter=" + suffix
img = document.createElement('img'); img.src=url; document.all.body.appendChild(img);
</script>
</code></pre>
<p>Then once the page is loaded, I can go figure out the url by sniffing the packets. But I can't just figure it out from the source, because I can't predict the outcome of magicNumberFunction...().</p>
<p>Any help would be muchly appreciated!</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1769707/how-to-invoke-the-file-download-window-in-javascript0how to invoke the file download window in javascript?manraj822009-11-20T10:51:21Z2009-11-20T14:19:07Z
<p>Hi all,</p>
<p>I have got a PDF fle which i would like my users to download when they click on a button/link/image.Is this possible?</p>
<p>Thank You</p>
http://stackoverflow.com/questions/1764918/cached-image-problem2Cached image problemtomgriley2009-11-19T17:06:45Z2009-11-19T18:15:44Z
<p>Hey all. </p>
<p>Right, my problem is that I need to replace an image that appears on every page of a site, which is fine, the problem is I want every user to see the new image and not a cached version of the old one. This is made especially difficult because I can’t make any code changes (far too many places to do it for it to be viable) so I need to replace the image on the server with a new one of the same name. Not only that but the pages are quite heavy so I don’t want to force the entire page to reload completely every time the page is requested.</p>
<p>Im thinking the best way would be to do something in IIS that will force the new image onto anybody who hasn’t got it already. The Last-Modified or Expires HTTP headers where my first stop but I can find a way to make them work against a single item rather than the entire page.</p>
<p>Any help/ideas would be fantastic!</p>
<p>Thanks, Tom.</p>
http://stackoverflow.com/questions/1752317/how-to-get-the-true-url-of-a-file-on-the-web-python3How to get the true URL of a file on the web. (Python)alex2009-11-17T22:26:55Z2009-11-17T23:36:50Z
<p>I notice that sometimes audio files on the internet have a "fake" URL. </p>
<pre><code>http://garagaeband.com/3252243
</code></pre>
<p>And this will <strong>302</strong> to the real URL:</p>
<pre><code>http://garageband.com/michael_jackson4.mp3
</code></pre>
<p>My question is...when supplied with the fake URL, how can you <strong>get the REAL URL from headers</strong>?</p>
<p>Currently, this is my code for reading the headers of a file. I don't know if this code will get me what I want to accomplish. How do I parse out the "real" URL From the response headers?</p>
<pre><code>import httplib
conn = httplib.HTTPConnection(head)
conn.request("HEAD",tail)
res = conn.getresponse()
</code></pre>
<p>This has a 302 redirect:
<strong><em><a href="http://www.garageband.com/mp3cat/.UZCMYiqF7Kum/01%5FNo%5Fpierdas%5Fla%5Ffuente%5Fdel%5Fgozo.mp3" rel="nofollow">http://www.garageband.com/mp3cat/.UZCMYiqF7Kum/01%5FNo%5Fpierdas%5Fla%5Ffuente%5Fdel%5Fgozo.mp3</a></em></strong></p>
http://stackoverflow.com/questions/1748232/error-opening-pdf-in-browser-what-http-header-values-should-i-use-for-streaming0Error opening PDF in browser - what HTTP header values should I use for streaming a PDF over https?Caroline Orr2009-11-17T11:30:44Z2009-11-17T17:13:23Z
<p>I have a J2EE webapp which is used to download a generated PDF served by an HTTP servlet. When running over SSL in production the users are getting the error message </p>
<blockquote>
<p>There was an error opening this document. The file cannot be found.</p>
</blockquote>
<p>in Acrobat when they choose to open the file in the browser instead of saving it to file. If they save the file there is no problem. The error only occurs in production which is an Oracle Application Server cluster behind an F5 BIG-IP router. In test the problem does not occur even over https. </p>
<p>The current headers being sent are </p>
<pre><code>Content-disposition: attachment; filename=myfile.pdf
Pragma: public
Cache-control: must-revalidate
</code></pre>
<p>Has anyone experienced this problem in the past? What values should I be using for these headers? Should I be using inline content-disposition instead of attachment?</p>
http://stackoverflow.com/questions/1741768/wcf-gzip-compression-request-response-processing2WCF GZip Compression Request/Response ProcessingIanT82009-11-16T12:02:27Z2009-11-17T15:01:14Z
<p>How do I get a WCF client to process server responses which have been GZipped or Deflated by IIS?</p>
<p>On IIS, I've followed the instructions <a href="http://weblogs.asp.net/owscott/archive/2004/01/12/57916.aspx" rel="nofollow">here</a> on how to make IIS 6 gzip all responses (where the request contained "Accept-Encoding: gzip, deflate") emitted by .svc wcf services.</p>
<p>On the client, I've followed the instructions <a href="http://stackoverflow.com/questions/1365295/wcf-content-length-http-header-on-outbound-message">here</a> and <a href="http://kennyw.com/indigo/153" rel="nofollow">here</a> on how to inject this header into the web request: "Accept-Encoding: gzip, deflate".</p>
<p>Fiddler2 shows the response is binary and not plain old Xml.</p>
<p>The client crashes with an exception which basically says there's no Xml header, which ofcourse is true.</p>
<p>In my IClientMessageInspector, the app crashes before AfterReceiveReply is called.</p>
<p>Some further notes:</p>
<p>(1) I can't change the WCF service or client as they are supplied by a 3rd party. I can however attach behaviors and/or message inspectors via configuration if this is the right direction to take.</p>
<p>(2) I don't want to compress/uncompress just the soap body, but the entire message.</p>
<p>Any ideas/solutions?</p>
<p><strong>* SOLVED *</strong></p>
<p>It was not possible to write a WCF extension to achieve these goals. Instead I followed this CodeProject <a href="http://www.codeproject.com/KB/aspnet/CompressibleHTTP20.aspx?msg=1350040" rel="nofollow">article</a> which advocate a helper class:</p>
<pre><code>public class CompressibleHttpRequestCreator : IWebRequestCreate
{
public CompressibleHttpRequestCreator()
{
}
WebRequest IWebRequestCreate.Create(Uri uri)
{
HttpWebRequest httpWebRequest =
Activator.CreateInstance(typeof(HttpWebRequest),
BindingFlags.CreateInstance | BindingFlags.Public |
BindingFlags.NonPublic | BindingFlags.Instance,
null, new object[] { uri, null }, null) as HttpWebRequest;
if (httpWebRequest == null)
{
return null;
}
httpWebRequest.AutomaticDecompression =DecompressionMethods.GZip |
DecompressionMethods.Deflate;
return httpWebRequest;
}
}
</code></pre>
<p>and also, an addition to the application configuration file:</p>
<pre><code><configuration>
<system.net>
<webRequestModules>
<remove prefix="http:"/>
<add prefix="http:"
type="Pajocomo.Net.CompressibleHttpRequestCreator, Pajocomo" />
</webRequestModules>
</system.net>
</configuration>
</code></pre>
<p>What seems to be happening is that WCF eventually asks some factory or other deep down in system.net to provide an HttpWebRequest instance, and we provide the helper that will be asked to create the required instance.</p>
<p>In the WCF client configuration file, a simple basicHttpBinding is all that is required, without the need for any custom extensions.</p>
<p>When the application runs, the client Http request contains the header "Accept-Encoding: gzip, deflate", the server returns a gzipped web response, and the client transparently decompresses the http response before handing it over to WCF.</p>
<p>When I tried to apply this technique to Web Services I found that it did NOT work. Although the helper class was executed in the same was as when used by the WCF client, the http request did not contain the "Accept-Encoding: ..." header.</p>
<p>To make this work for Web Services, I had to edit the Web Proxy class, and add this method:</p>
<pre><code>protected override System.Net.WebRequest GetWebRequest(Uri uri)
{
System.Net.HttpWebRequest rq = (System.Net.HttpWebRequest)base.GetWebRequest(uri);
rq.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
return rq;
}
</code></pre>
<p>Note that it did not matter whether the CompressibleHttpRequestCreator and block from the application config file were present or not. For web services, only overriding GetWebRequest in the Web Service Proxy worked.</p>
http://stackoverflow.com/questions/1572860/php-form-validation-cookies-firefox-cache-problem0PHP form validation + cookies = Firefox cache problem?Mr Krinkle2009-10-15T14:45:21Z2009-11-17T13:32:23Z
<p>I have a simple form validation class in PHP. It works like this:</p>
<p>A: form page that POSTs results to VALIDATION page</p>
<p>VALIDATION: checks results. If wrong, set cookies with the name of the fields that are wrong and the message for each input error. Go back to A form page by using headers location property.</p>
<p>A: if the cookies are present, print error messages associated with each field as well as the rest of the form. </p>
<p>This works well in all browsers but Firefox. Firefox is setting and deleting the cookies fine. But when VALIDATION sends user back to page A, the same error messages of last input errors are present. This despite cookies being different from last time.</p>
<p>I've tried to use the following lines to invalidate cache, but had no luck:</p>
<p>header( "Cache-Control: no-cache, no-store, must-revalidate" );</p>
<p>Anyone knows what's going on?</p>
http://stackoverflow.com/questions/1748374/http-401-whats-an-appropriate-www-authenticate-header-value1HTTP 401 - what's an appropriate WWW-Authenticate header value?Will Morgan2009-11-17T11:55:36Z2009-11-17T12:58:54Z
<p>Hi,</p>
<p>The application I'm working on at the moment has a session timeout value. If the user hasn't interacted for longer than this value, the next page they try to load, they will be prompted to log in.</p>
<p>All requests made are routed through this mechanism, which includes AJAX calls. Originally we were sending a 200 header with the login page, which introduces some problems with AJAX since code is run if a 200 response is sent, and most data sent back from these RPC calls is JSON or raw JavaScript that gets evaluated (don't ask :|).</p>
<p>I've suggested that a 401 is better, since our JSON parser won't try to consume an HTML login page.. :)</p>
<p>When <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2" rel="nofollow">reading the spec</a>, however, I noticed that the <strong><code>WWW-Authenticate</code></strong> field must also be sent.</p>
<p>What is a good value for this field? Will <code>Application Login</code> suffice?</p>
http://stackoverflow.com/questions/1721078/is-there-a-firefox-plug-in-which-can-list-unsecure-assets-which-are-causing-the2Is there a Firefox plug in which can list unsecure assets which are causing the "Warning: Contains unauthenticated content"Paul2009-11-12T09:44:01Z2009-11-17T11:02:34Z
<p>I am developing web pages which reference external links/images/stylesheets etc. I have 1 page which loads fine in HTTPS, but then when I apply different external styles, some of the external styles cause a warning "Contains unauthenticated content"</p>
<p>Don't get me wrong, I understand <em>WHAT</em> this means, but I can't see any reference to any HTTP requests in View source, Firebug, Live HTTP Headers or in the View Page Info > Media window.</p>
<p>Does anyone have any tips or ideas of plug ins or tools which can identify exactly which items Firefox is not happy with?</p>
<p>Unfortunately this page is not live on the internet so I can't show it to you.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1744436/need-fully-qualified-path-from-source-computer0Need Fully Qualified Path From 'Source' ComputerCode Sherpa2009-11-16T19:48:44Z2009-11-17T05:34:37Z
<p>Hi. </p>
<p>I am trying to get the full path from the client for files
that are submitted for upload.</p>
<p>I want something like: </p>
<blockquote>
<p>C://this/is/your/file.jpg</p>
</blockquote>
<p>But, when I try:</p>
<pre><code>m_File = Request.Files[i];
m_File.FileName
</code></pre>
<p>I get "just" the file name. </p>
<p>And, when I try: </p>
<pre><code>System.IO.Path.GetFileName(m_File.FileName)
</code></pre>
<p>I get a path that seems to point to my IDE:</p>
<p>C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PICT0736.JPG</p>
<p>I am using an HttpPostedFile collection on the server and
hidden inputs with type=file (passed via iframe) to POST the
file collection.</p>
<p>Ideally, I would like each input to have value="c://path/to/file.gif"</p>
<p>If you don't think this is possible or stylistically sound, I'd appreciate
alternative suggestions (code examples especially appreciated). </p>
<p>Thanks for your efforts. :)</p>
http://stackoverflow.com/questions/267546/correct-http-header-for-json-file9correct HTTP header for json fileandyk2008-11-06T03:15:10Z2009-11-16T19:12:10Z
<p>I've searched around and found two different ways to define Content-type for JSON file loaded with php.</p>
<pre><code>header('Content-type: text/json');
header('Content-type: application/json');
</code></pre>
<p>which one should be used ?</p>
http://stackoverflow.com/questions/1741353/how-to-set-response-filename-without-forcing-saveas-dialog1How to set response filename without forcing saveas dialogHugo Palma2009-11-16T10:38:54Z2009-11-16T15:09:26Z
<p>I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:</p>
<ul>
<li><p>If the browser is able to render content of the given content-type then it should display it in the browser window.</p></li>
<li><p>If the browser doesn't know how to render the content then it should display the saveas dialog where the filename should be one provided in the response.</p></li>
</ul>
<p>The problem that if i set the Content-Disposition header with:</p>
<blockquote>
<p>"attachment; filename="myfile.txt""</p>
</blockquote>
<p>the browser will always display the savesas dialog.</p>
<p>If i don't set the Content-Disposition the filename used in the saveas dialog is the one in the url that doesn't work in my case.</p>
<p>I also tried setting the Content-Disposition to inline but the outcome is the same.</p>
http://stackoverflow.com/questions/1732605/internet-explorer-blocked-file-download-file-of-unknown-file-type0Internet Explorer blocked file download; file of "Unknown File Type"Bungle2009-11-13T23:47:08Z2009-11-14T00:07:54Z
<p>I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and IE 8) is not correctly interpreting a file I'm trying to load via AJAX (with jQuery) as JavaScript. A file download warning appears and the user needs to confirm that the file should be downloaded. Unfortunately, this is not acceptable for the purposes of the application.</p>
<p>I created a couple of test files; one is just a JavaScript file served from Amazon S3; the other is actually a resource URL served by Varnish/Rails. The latter is the one that triggers the warning. So:</p>
<p><hr></p>
<p>LINK: <a href="http://wsj.staging.intspot.com/ism/wsj_ism/?url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052748704328104574520112839377366.html%3Fmod%3DWSJ_hpp_sections_smallbusiness&have_content=true&callback=dispatch" rel="nofollow">URL that gives a warning in IE</a></p>
<p>REQUEST HEADERS:</p>
<pre>Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10</pre>
<p>RESPONSE HEADERS:</p>
<pre>Age: 1952
Cache-Control: public, max-age=3598
Connection: keep-alive
Content-Encoding: gzip
Content-Length: 2060
Content-Type: text/javascript; charset=utf-8
Date: Fri, 13 Nov 2009 22:54:18 GMT
Etag: "272d9ec2e59aa92da18758cf42a4d729"
Server: nginx/0.7.61 + Phusion Passenger 2.2.5 (mod_rails/mod_rack)
Status: 200 OK
Via: 1.1 varnish
X-Powered-By: Phusion Passenger (mod_rails/mod_rack) 2.2.5
X-Runtime: 0.11573
X-Varnish: 176673116 176651738</pre>
<p><hr></p>
<p>LINK: <a href="http://troy.onespot.com/javascripts/ie_security.js" rel="nofollow">URL that does not give a warning in IE</a></p>
<p>REQUEST HEADERS:</p>
<pre>Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10</pre>
<p>RESPONSE HEADERS:</p>
<pre>Age: 14
Connection: keep-alive
Content-Encoding: gzip
Content-Length: 52
Content-Type: text/javascript
Date: Fri, 13 Nov 2009 22:55:03 GMT
Etag: "7b7ded6696ee52551289c856d3173db4"
Last-Modified: Fri, 13 Nov 2009 22:30:45 GMT
Server: AmazonS3
Via: 1.1 varnish
X-Amz-Id-2: CR79uoLC67sr0e0uj4CUOCoBQgcIW/jaJc/FNSA3zsK3Lns/gAqx98/T9h/UeJGm
X-Amz-Request-Id: BCF2F2D69F5126DD
X-Varnish: 1566212056 1566211955</pre>
<p><hr></p>
<p>What immediately sticks out to me is the Content-Type of "text/javascript; charset=utf-8" for the URL that gives a warning - is that valid? I had always assumed that only "text/javascript" would be valid.</p>
<p>Also, the URL that gives a warning returns content of Content-Type "text/javascript," but it is a Rails URL that does not have an extension of .js - could that make a difference?</p>
<p>Is there anything else that sticks out, or does anyone have any other ideas of what could be causing this problem? Thanks very much for any help.</p>
http://stackoverflow.com/questions/1731657/httplib-in-python-to-get-the-status-code-but-it-is-too-tricky0httplib in Python to get the status code...but it is too tricky?alex2009-11-13T20:22:03Z2009-11-13T21:24:08Z
<pre><code>>>> import httplib
>>> conn = httplib.HTTPConnection("www.google.com")
>>> conn.request("HEAD", "/index.html")
>>> res = conn.getresponse()
>>> print res.status, res.reason
200 OK
</code></pre>
<p>This code will get the HTTP status code. However, notice that I split up "google.com" and "/index.html" on 2 lines.</p>
<p>And it's confusing.</p>
<p>What if I want to find the status code of just a general URL???</p>
<pre><code>http://mydomain.com/sunny/boo.avi
http://anotherdomain.com/podcast.mp3
http://anotherdomain.com/rss/fee.xml
</code></pre>
<p>Can't I just stick the URL into it, and make it work?</p>
<p>Edit...I cannot use urllib, because I don't want to downlaod the file</p>
http://stackoverflow.com/questions/268526/blank-page-in-ie62Blank page in IE6Liam2008-11-06T12:36:23Z2009-11-13T13:59:55Z
<p>A site I am working on that is built using PHP is sometimes showing a completely blank page.
There are no error messages on the client or on the server.
The same page may display sometimes but not others.
All pages are working fine in IE7, Firefox 3, Safari and Opera.
All pages are XHTML with this meta element:</p>
<pre><code><meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
</code></pre>
<p>It <em>appears</em> that I have fixed the problem by adding this PHP code:</p>
<pre><code>header('Content-type: text/html; charset=utf-8');
</code></pre>
<p>I have read that this problem may be caused by XHTML, encoding, gzip compression, or caching, but nobody has been able to backup these guesses.</p>
<p>As the problem was intermittent I am not confident that my solution has actually solved the problem.</p>
<p>My question is, are there <em>reproducible</em> ways of having IE6 show a blank page when other browsers display content?
If so, what causes it and what solves it?</p>
http://stackoverflow.com/questions/1717772/refresh-button-does-not-respect-prior-redirect0Refresh button does not respect prior RedirectR_2009-11-11T20:15:05Z2009-11-11T20:22:01Z
<p>I have found a strange scenario in which the Redirect after Post pattern does not seem to work:</p>
<ol>
<li>Page FOO has a form which POSTs to page BAR</li>
<li>Page BAR returns a HTML/1.0 500 header and an error message because the database was not available; no redirect is issued. At this point the URL in the browser is BAR</li>
<li>The database comes back up right now.</li>
<li><p>At this point user clicks the refresh button (in both IE7 or FF 3.5) and it asks if they wish to resend the POST data. Clicking 'Yes' here:</p>
<ul>
<li><p>FF3.5 respects the subsequent redirect to the page BARSUCCESS (it shows BARSUCCESS in the URL). But when I click the refresh button again after the successful redirect to BARSUCCESS it again POSTs the data from FOO.</p></li>
<li><p>IE7 displays the BARSUCCESS page but its URL still says BAR. Clicking refresh POSTs the data from FOO again.</p></li>
</ul></li>
</ol>
<p><hr></p>
<p>I've tried HTML/1.0 301, 302 and 303 headers and they all give the same behavior. Firebug shows the redirect to BARSUCCESS but the refresh button seems to think it's still BAR.</p>
<p>Note that when there are no problems, and the initial POST from FOO results in a successful redirect to BARSUCCESS, I can hit the refresh button without POSTing again. </p>
http://stackoverflow.com/questions/1632378/redirect-with-curl-httpclient-header-location-missing0Redirect with Curl/HttpClient: header "Location" missing.Pierre2009-10-27T17:24:30Z2009-11-11T17:56:53Z
<p>Hi all,
when I get the following url with <strong>curl</strong></p>
<pre><code>curl -D headers.http "http://www.springerlink.com/index/10.1007/s00453-007-9157-8"
</code></pre>
<p>the file headers.http contains a "Location" header:</p>
<pre><code>HTTP/1.1 302 Found
Date: Tue, 27 Oct 2009 17:00:20 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Location: http://www.springerlink.com/link.asp?id=c104731297q64224
Set-Cookie: CookiesSupported=True; expires=Wed, 27-Oct-2010 17:00:20 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 173
</code></pre>
<p>but when I used the apache httpclient library this "Location:" header was missing (?).</p>
<pre><code>int status = httpClient.executeMethod(method);
if(status!=HttpStatus.SC_OK &&
status!=HttpStatus.SC_MOVED_TEMPORARILY &&
status!=HttpStatus.SC_MOVED_PERMANENTLY
)
{
throw new IOException("connection failure for "+url+" status:"+status);
}
Header header=method.getResponseHeader("Location");
if(header==null )
{
for(Header h:method.getResponseHeaders())
{
LOG.info(h.toString());
}
throw new IOException(
"Expected a redirect for "+url
);
}
</code></pre>
<p>I've listed the headers below:</p>
<pre><code>INFO: Date: Tue, 27 Oct 2009 17:05:13 GMT
INFO: Server: Microsoft-IIS/6.0
INFO: X-Powered-By: ASP.NET
INFO: X-AspNet-Version: 2.0.50727
INFO: Set-Cookie: ASP.NET_SessionId=js1o5wqnuhuh24islnvkyr45; path=/; HttpOnly
INFO: Cache-Control: private
INFO: Content-Type: text/html; charset=utf-8
INFO: Content-Length: 17245
</code></pre>
<p>uhh ???</p>
http://stackoverflow.com/questions/1716513/ie-sending-options-request-for-file-downloads1IE Sending OPTIONS Request for File Downloadsdragonmantank2009-11-11T16:46:17Z2009-11-11T16:46:17Z
<p>On my site I have a very basic setup: an 'a href' tag that just points to a file. Nothing fancy:</p>
<pre><code><a href="/path/to/my/file.doc">File</a>
</code></pre>
<p>No fancy javascript, nothing. Some users who are using old IE versions less than 8 have been having spotty problems downloading different files like this. What I've been able to trace it back to is that IE will send an OPTIONS request for the file (and even then not all the time). Since I'm not running a Webdav server, I had mod_security set at the default to reject those non-normal header, so it returns a 500 response.</p>
<p>IE8, Firefox, and Chrome do not do an OPTIONS request and therefore never have a problem.</p>
<p>Do I need to set something up differently on my end to IE stop sending an OPTIONS request and just a standard GET request?</p>
<p>Running:</p>
<ul>
<li>CentOS 5.3</li>
<li>Apache 2.2.8</li>
<li>mod_security 2.5.0</li>
</ul>
http://stackoverflow.com/questions/49547/making-sure-a-web-page-is-not-cached-across-all-browsers8Making sure a web page is not cached, across all browsers.Edward Wilde2008-09-08T12:08:49Z2009-11-10T17:12:29Z
<p>Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner.</p>
<p>For security reasons we do not want certain pages in our application to cached, <strong>ever,</strong> by the web browser. This must work for at least the following browsers:</p>
<ul>
<li>Internet Explorer versions 6-8</li>
<li>FireFox versions 1.5 - 3.0</li>
<li>Safari version 3</li>
<li>Opera 9</li>
</ul>
<p>Our requirement came from a security test. After logging out from our website you could press the back button and view cached pages.</p>
http://stackoverflow.com/questions/518919/is-there-any-efficient-way-to-extract-multipart-range-response-of-http-request0Is there any efficient way to extract multipart range response of http request?KrzyCube2009-02-06T02:52:38Z2009-11-09T18:00:12Z
<p>I am doing some http request with WinHttp.lib,</p>
<p>while Get data with Range header, such as</p>
<p>"GET someURL\r\n Range: bytes=4096-8191,0-4095",</p>
<p>received the respone data after response header like this(according to RFC2616):</p>
<p>================================</p>
<p>--46228a661764c4210</p>
<p>Content-type: text/plain</p>
<p>Content-range: bytes 4096-8191/14065</p>
<p>...Content Data of Rang#1</p>
<p>--46228a661764c4210</p>
<p>Content-type: text/plain</p>
<p>Content-range: bytes 0-4095/14065</p>
<p>...Content Data of Rang#2</p>
<h1>--46228a661764c4210--</h1>
<p>Then ,is there any efficient way to extract the Content Data that i exactly expected of each range,while data's received as stream.</p>
http://stackoverflow.com/questions/1699082/set-response-format-inside-a-function-according-to-accept-header-and-not-outside0Set Response format inside a function according to Accept header and not outside with ResponseFormat = WebMessageFormat.Json in RESTundertakeror2009-11-09T04:23:02Z2009-11-09T08:52:14Z
<p>Hi there,
i am using the Plain old XML template from WCF REST Starter Kit Preview 2 to build a REST service and i would like to set the ResponseFormat inside the OperationContract, not outside(not with ResponseFormat = WebMessageFormat.Json) because i want to set it accordingly to the Accept Header in the Request. and ideally i would like to be able to set the RequestFormat from inside the OperationContract also, acording to the Content-Type header.</p>
<p>So, could anyone tell me how i can do it, or point me towards some examples.</p>
<p>chers,</p>
<p>Later Edit: so i don't want to have things like "format" in the UriTemplate, i just want one UriTemplate, no ResponseFormat (and no RequestFormat at some point) and the ResponseBody to be output according to the AcceptHeader</p>
<pre><code>[WebHelp(Comment = "For Service testing purposes")]
[WebGet(UriTemplate = "Echo")]
[OperationContract]
public ResponseBody Echo()
</code></pre>
http://stackoverflow.com/questions/1688484/how-to-send-zipped-ascii-data-in-an-http-response-from-php0how to send zipped (ASCII) data in an HTTP response from PHPskyeagle2009-11-06T15:55:56Z2009-11-06T17:19:07Z
<p>I am writing a service that sends data as a response, to a client.</p>
<p>I am sending text (PLAIN ASCII) data, but I want to compress the data first (uzing any of the standard compression routines), and then send the compressed data back to the server, using the header() function etc.</p>
<p>I am relatively new to PHP so having gathered the data, I know need to know how I can send the (compressed) data in an HTTP response to the user</p>
<p>This is the pseudocode of what I have so far:</p>
<pre><code><?php
function createResponse($args)
{
if ( ($data = fetch_data($args)) !== NULL)
{
/* Assumption is that $data is a string consisting of comma separated
values (for the columns) and each "row" is sepeated by a CRLF
so $data looks like this:
18-Oct-2009, 100.2, -10.5, 15.66, 34.2, 99.2, 88.2, 'c', 'it1', 1000342\r\n
19-Oct-2009, -33.72, 47.5, 24.76, 8.2, 89.2, 88.2, 'c', 'it2', 304342\r\n
etc ..
*/
//1. OPTIONAL - need to encrypt $data here (how?)
//2. Need to compress (encrypted?) $data here (how?)
//3. Need to send HTTP Status 200 OK and mime/type (zip/compresed here)
//4. Need to send data
}
else
{
//5. Need to send HTTP error code (say 404) here
}
}
?>
</code></pre>
<p>Can any experienced PHP coders out there tell me which statements to use for 1 -5 above ?</p>