In the Hypertext Transfer Protocol (HTTP), HTTP header fields contain the operating parameters of an HTTP request or response. With the request or response line (first line of message), they form the message header.

learn more… | top users | synonyms

0
votes
2answers
83 views

How to secure ASP.NET REST with JQUERY client call

I am completely new in the rest web services world and I traveled hugely articles on the web trying to implement REST webservices in ASP.NET (with in parallel a webform application in another project) ...
8
votes
5answers
4k views

Stop browser to make HTTP requests for images that should stay cached - mod_expires

After reading many articles and some questions on here, I finally succeded in activating the Apache mod_expires to tell the browser it MUST cache images for 1 year. <filesMatch ...
0
votes
1answer
61 views

Using Javascript to add custom http header and trigger file download

I would like to start a simple file download through the browser, however an access token must be passed with a custom HTTP header: GET https://my.site.com/some/file Authorization: access_token How ...
1
vote
1answer
96 views

Firefox add-on SDK: Get http response headers

I'm new to add-on development and I've been struggling with this issue for a while now. There are some questions here that are somehow related but they haven't helped me to find a solution yet. So, ...
-4
votes
2answers
61 views

PHP Form Header Location not working [duplicate]

I'm trying to build a form using php error checking on the same page. Everything seems to be working fine except redirecting visitors to another page on my website (thanks.html) after they've filled ...
0
votes
2answers
1k views

Parsing raw HTTP Request

I working on HTTP Traffic Data set which is composed of complete POST and GET request Like given below. I have written code in java that has separated each of these request and saved it as string ...
1
vote
0answers
72 views

Angular http caching - hash vs html5mode

Here's the thing, we want to be able to cache our partials(templates), using http headers. After some thought we ended up with wanting to put our templates to the initially loaded html using the ...
0
votes
0answers
13 views

Add header to a domain

I have a situation where a (potentially) large number of domains will be pointing to my MVC application. Now I need to authenticate these domains to decide if I serve the request or not, I could put ...
0
votes
0answers
25 views

force page to not retrieve from cache with if-modified-since

I have an advertisement site and users can place advertisements on it. On the overfiew page the last placed advertisements are seen. In the ideal situation the page is retrieved from the browser cache ...
4
votes
2answers
630 views

IOS HTTP Request Example

I am trying make a call to the fitbit API. I am unsure how to input the HTTP request shown below into my Objective C code in order to make this call and handle the response. POST ...
0
votes
1answer
192 views

get the ETAG value from the HttpResponse

To get the content length we usually use httpResponse.getEntity().getCotentLength(). But to get the ETAG Is it supposed to use httpResponse.getFirstHeader("ETAG")? Both the Content-Length and ETAG ...
0
votes
2answers
79 views

PHP header issue

I have set php header as header("Content-Type: application/xml"); And I got following response <?xml version="1.0" encoding="utf-8"?> <feedback> ...
0
votes
0answers
34 views

Chrome frame works only once

I am trying to render page on IE with google frame by setting the response header with X-UA-Compatible "IE=Edge,chrome=IE8" env=gcf in httpd.conf file in IBM Http Server. If i load my page for ...
0
votes
1answer
8 views

Resource with cache headers still going out

On a call I want to get cached forever, I put these headers (from the response i see): HTTP/1.1 200 OK X-Powered-By Express Vary Accept-Encoding Cache-Control public, max-age=31536000 Expires ...
12
votes
3answers
5k views

ASP.NET MVC and IE caching - manipulating response headers ineffective

Background I'm attempting to help a colleague debug an issue that hasn't been an issue for the past 6 months. After the most recent deployment of an ASP.NET MVC 2 application, FileResult responses ...
1
vote
2answers
258 views

Why aren't the Server and X-Powered-By headers being removed?

My ASP.NET 4.5 app is being deployed to shared hosting so I do not have access to IIS settings. To remove the X-Powered-By header, I specify in web.config: <system.webServer> ...
2
votes
2answers
2k views

use cURL to get HTTP header and save to variable

I am using this to grab a XML feed and the HTTP headers // Initiate the curl session $ch = curl_init(); // Set the URL curl_setopt($ch, CURLOPT_URL, $url); // Allow the headers curl_setopt($ch, ...
1
vote
1answer
39 views

How do i get the HTTP headers in a Google App Engine webapp2 requesthandler

How do i access the http headers of the request that calls this method? class GetDBVersion(webapp2.RequestHandler): def get(self): # writes out db version in main.py app = ...
0
votes
1answer
40 views

translate curl to .net web request

Here is a curl command from documentation: curl -g "http://ip.ip.ip.ip/test/xyz.jpg?attributes=size" Can i just translate it to HttpReqeust like this? UriBuilder builder = new UriBuilder("http", ...
0
votes
1answer
38 views

Rewrite HTTP server header with PHP

When I try to use this code: header('X-Powered-By: ASP.NET'); header('Server: Microsoft-IIS/7.5'); the headers that have sent are: Server:Apache/2.2.22 (Win64) PHP/5.4.3 X-Powered-By:ASP.NET ...
1
vote
1answer
176 views

Refused to get unsafe header “Content-Range”

For some reason I cannot access the response header of "Content-Range" anymore... Therefore it's impossible to determine the file size of a resource using XHR. I get error Refused to get unsafe header ...
2
votes
2answers
208 views

Websocket output received by browser, complains about “Invalid UTF-8 sequence in header value ”

When I load the page in my browser, the page gets served correctly. When the javascript executes, Chrome's console output says: Invalid UTF-8 sequence in header value I have searched for that ...
1
vote
4answers
535 views

Using Ruby to authenticate to Azure (HTTP Header authentication)?

Since the Google Search API has been deprecated, I'd like to use the Bing Search API (now a Windows Azure API) in my Ruby apps. However, Azure has a strange authentication pattern where you build a ...
0
votes
2answers
34 views

How do I append a specific header to an HttpResponse by default from an ASP.NET web service?

I have a web service with many methods. Clients accessing this service could be from any domain (which means I have to put some cross-domain magic in here and there). I found a header I can add to ...
0
votes
1answer
27 views

Python 3.3 - Getting Header and redirect the results

I would like to create a script that look to a file, read each line (which are url) and fetch the HTTP header for me. I have a questions : I try to redirect the result to a text file but, anyhow I ...
1
vote
3answers
388 views

PHP - Detect gzip server response

I'm using curl to fetch a webpage, I need to detect if the response is gzip or not. This works perfectly fine if Content-Encoding is specified in the response headers, but some servers instead ...
4
votes
3answers
198 views

How to download a file with its original filename from GAE's blobstore?

Once you upload a file to the blobstore, it renames it something like "s9QmBqJPuiVzWbySYvHVRg==". If you navigate to its "/serve" URL to download the file, the downloaded file is named this jumble of ...
12
votes
4answers
5k views

Chrome doesn't cache images/js/css

When Chrome loads my website, it checks the server for updated versions of files before it shows them. (Images/Javascript/CSS) It gets a 304 from the server because I never edit external javascript, ...
2
votes
2answers
168 views

How can I set User-Agent and Referer headers when using ClientWebSocket in .net 4.5?

The obvious answer of using ClientWebSocket.SetHeader throws an exception because it's a protected header: System.ArgumentException occurred Message=The 'User-Agent' header must be modified using ...
0
votes
1answer
26 views

How to add authentication to Event Notification?

I looked through documentation on Event Notification (http://developers.box.com/webhooks/). I would like to call an REST API, with basic authentication. Is there a way to do this? like, customizing ...
2
votes
1answer
320 views

No browser is sending Authorization info in header

I'm looking at this and this and it would appear 'easy' to send the credentials in the URL. For example: http://gooduser:secretpassword@www.example.com/webcallback?foo=bar This is all well and ...
0
votes
1answer
46 views

My abstract class is sending output?

I can not change headers because apparently my abstract class is starting output. Why would this be starting output? is it a bug with 5.4? namespace Lume\Abstracts; abstract class Chain{ abstract ...
0
votes
1answer
25 views

Is it possible to see if AJAX was used just by looking at the HTTP traffic?

I am making a program to monitor my network, and in this program I am reading the HTTP traffic which is going through my network. One thing I want to do is to separate the AJAX HTTP traffic from the ...
0
votes
0answers
22 views

Expiring a far future expire header

I'm curious about using Amazon S3 to host my relatively static blog site. I think I could easily make it all HTML and then upload this to Amazon S3. I would like to set a far future header (since I ...
0
votes
2answers
363 views

If-modified-since header with filters and MVC3

I just saw some examples about implementing the if-modified-since header. I really don't understand how it works very well. I have seen this example and it seems that if I set a date value to the ...
3
votes
2answers
3k views

How to set the HTTP Keep-Alive timeout in a nodejs server

I'm actually doing some load testing against an ExpressJS server, and I noticed that the response send by the server includes a "Connection: Keep-Alive" header. As far as I understand it, the ...
0
votes
1answer
29 views

What HTTP status code should be returned when given an invalid ID?

What status code should be returned for a request to delete an object that doesn't exist? public ContentResult DeleteEntity(int id, FormCollection FormData) { Database db = new Database(); ...
0
votes
0answers
30 views

Feature Detect proper handling of Content-Disposition: attachment?

There is a known issue where ios Safari will ignore Content-Disposition: attachment headers. This is a fairly bit problem when trying to trigger downloads from a single page application (using the ...
0
votes
1answer
48 views

Parse request line of http header

Is there anything inbuilt in java.net to parse the request line on a http request? For example: CONNECT google.com:443 HTTP/1.1 In this case I want to parse the host and port.
0
votes
1answer
31 views

Parsing Request Headers in Test::Unit

I'm trying to parse HTTP request headers in Test::Unit, but to no avail. I'm writing a functional test for a controller like so: test "create a shopify order" do get :order, PARAMS, {HEADER1 => ...
1
vote
1answer
153 views

how to call web api service from ipad application using basic authentication through http headers?

Please give me a sample code to set http headers for web api service. i developed basic authentication. public class BasicAuthenticationFilter : AuthorizationFilterAttribute { bool ...
0
votes
0answers
24 views

Programmatically handling an HTTP 302 redirect for authorisation

I have a simple homebrew app running up on a test Apache2 server that protects a directory, so when someone tries to access it they get redirected to a custom login page that uses two-factor ...
0
votes
1answer
38 views

Does WP background transfers support re-uploading and how it actually works?

I'm trying to implement http handler for handling file upload by wp background transfers. I've tried this: var request = new BackgroundTransferRequest(@"http://computerName/test.ashx") ...
107
votes
3answers
59k views

application/x-www-form-urlencoded or multipart/form-data?

In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
2
votes
2answers
4k views

How do disable Transfer-Encoding in Tomcat 6

I have a web application running on Tomcat 6.0.29 server and JDK 1.6. When I send the response to the client, Tomcat sends Transfer-Encoding: chunked in the headers when the response size is > 8KB For ...
7
votes
2answers
2k views

Setting HTTP headers in Golang

I'm trying to set a header in my Go webserver. I'm using gorilla/mux and net/http packages. I'd like to set Access-Control-Allow-Origin: * to allow cross domain AJAX. Here's my Go code... func ...
1
vote
0answers
25 views

Link relation type for linking representations to the abstract resource?

I use Content negotiation to let user-agents select one of several representations for a resource. Example: the resource http://example.com/essay has the following representations: text/html → ...
5
votes
3answers
13k views

Create a text file for download on-the-fly

Update #1 What has been posted below is spot on for getting it to output the file. What it is doing though is outputting the string data followed by the rest of the forms HTML. Is there any way to ...
3
votes
1answer
123 views

X-Download-Options: noopen equivalent

The HTTP Header X-Download-Options: noopen alters Internet Explorer download dialog by removing the "open with" option. (The only remaining option becomes: "save as" and "cancel") Do you know if ...
0
votes
1answer
38 views

finding content-type from wireshark

Here are the wireshark logs of 3 POST's. All posting the same data but with different content-types, resulting in different ways the data is read on the server. I'm attempt to to understand how to ...

1 3 4 5 6 7 71