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.
1
vote
1answer
177 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 ...
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
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 ...
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.
1
vote
1answer
154 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
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 => ...
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")
...
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 → ...
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
40 views
PHP HTTP HEADER: how to keep/rebuild apache2's last-modified&ETag
calling a .html on my website directly the header will be:
HTTP/1.1 200 OK
Date: Tue, 07 May 2013 14:53:30 GMT
Server: Apache
Last-Modified: Tue, 24 Aug 2012 21:51:42 GMT
ETag: ...
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
2answers
89 views
Remove referer from Javascript redirect
I need to do a Javascript based redirect
window.location.href = 'URL';
But I need to remove the referrer from the HTTP headers upon redirection (the target page should see no referrer), how can I ...
0
votes
4answers
81 views
Firefox plugin to monitor http headers sent to a REST Web service
I have a webapp accessing some REST APIs. Now the REST APIs need some headers to be added to the request. I already have the code for adding the headers in my webapp but i need to verify if it is ...
0
votes
2answers
80 views
Extract the Spray.io Content-Type from request?
Since Spray.io is defining content types at a low-level, how do I simply reference the content-type of the incoming request?
Here's a short example where an image is PUT.
put {
...
0
votes
1answer
39 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 ...
0
votes
1answer
29 views
Is it possible that some firewall modify 'Accept-Encoding'? Though it seems okay in Fiddler
I added a rule on APACHE for HTTP Compression. The rule is surely okay but Fiddler displays the response is not gzipped.(I tested curl for localhost, the response is gzipped)
I suspect a firewall ...
0
votes
0answers
37 views
Google chrome doesn't capture the response header when the console window is closed
I've been working on this task for two weeks now and it's really frustrating me that when I fix one thing then just another error pops out. I have to put a lot of context here so anyone reading the ...
0
votes
1answer
24 views
Regexp for a valid user-agent
I'm trying to write a regexp that validates if a user-agent given by a user is valid.
I've found http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html section "14.43 User-Agent":
14.43 ...
0
votes
0answers
145 views
Authorization header not sent by XMLHttpRequest depending on server configuration
I am trying to implement a simple login mechanism based on basic Http Auth for my static site using the technique described here.
Basically, you use XMLHttpRequest to do the first login with ...
0
votes
1answer
74 views
On Heroku, why can't I see all the request headers with nodejs?
I'm trying to control static files cache headers in my nodejs app like described here ...
-1
votes
1answer
45 views
Node.js HTTP - Request not expected. What's this?
It seems that when I tried accessing a URL via get, instead
of returning a string, it returned nothing.
Then the received header has a location: (url) thing. What is causing
this man!
See the ...
0
votes
1answer
56 views
Encode header value using WebClient.Headers.Add()
I am using HTTP headers to send a string which contains Unicode characters (such as ñ) to a custom http server.
When I add the string as a header:
webClient.Headers.Add("Custom-Data", "señor");
It ...
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
0answers
31 views
How do we remove the “Expires: -1” HTTP Response Header when IIS 8 server dynamic content?
Here are the response headers that we are receiving:
http://redbot.org/?uri=http%3A%2F%2Fbuddha.cloudapp.net%2F
They include Expires: -1.
How do we change this to Expires: 60?
We know how to do ...
1
vote
1answer
137 views
Remove HTTP Response headers in Java
Is there a way to remove HTTP response headers like Server and X-Powered-By?
My application is using a Weblogic server. I'm programming in Java using the Spring MVC framework and Hibernate, and using ...
1
vote
1answer
66 views
PHP code doesnt “compile” when connecting via sockets
I am writing a script for mIRC that will fetch data from my webserver, that code is generated via PHP.
It works just fine when i connect via my browser (firefox).
However, when i connect via the mIRC ...
0
votes
1answer
82 views
HttpClient retrieve all headers
Currently, I am working on API wrapper. If I send a bad Consumer Key, the server will return Status as 403 Forbidden in the header. It will also pass custom headers. How do I actually retrieve these ...
1
vote
1answer
83 views
Disable preflight OPTION request when sending a cross domain request with custom HTTP header
I've just found out that my browser was sending an extra "OPTION" request when trying to make a cross domain ajax call with a custom http header.
I presume it is called "preflight request".
Is it ...
0
votes
2answers
51 views
Setting request header in ajax
I have trouble with a piece of ajax code. This is the error message I get from mod security:
/ajaxController.php?mod=catalog&op=ajaxSeenProducts HTTP/1.1
Access denied with code 400 ...
1
vote
1answer
75 views
Different ways of resolving the WWW URL prefix
It seems that the most commonly accepted method of redirecting users from http://example.com to http://www.example.com is by 301 Permanent redirect, but I came across a site(Facebook) that appears to ...
1
vote
1answer
69 views
Comparing local file against checksum using Net::HTTP in Ruby without downloading full file
Without being able to control or add headers server-side, is it possible to compare a local checksum against a remote file without downloading the entire file and comparing checksums using Ruby and ...
0
votes
1answer
29 views
httpPost request formation for java ! using data provided by fiddler o/p
This is my fiddler report of a post request from my browser ! I can see the post data ! The question is how to add this data if i make the post request from java e.g say using httpPost method. My ...
1
vote
1answer
54 views
SDWebImage and setting custom HTTP headers?
I´ve just changed my code for caching images away from EGOImageCache to SDWebView. Unfortunately i don´t know how to set custom HTTP headers as i have to send authentification to be able to fetch ...
0
votes
0answers
57 views
Unexpected HEAD request error in NodeJS
I have a node.js server and client using node.js api, and when I was trying to send a HEAD request to the server, got an error says
{ [Error: socket hang up] code: 'ECONNRESET' }
Meanwhile, a PUT ...
0
votes
0answers
17 views
Disable “Calendar Feed” Via Http Response Code?
We have a .NET web application that allows users to "subscribe" to a calendar feed containing the schedules for their kids' teams. This works great and several thousand people use it each year. I ...
0
votes
0answers
56 views
download popup window doesn't showing on safari and chrome
I tried to export the reports in PDF,CSV and XLS file. when i click on i-con (PDF,CSV and xls) i create the respective file and store it on server in a directory and HTTP headers sent back to the ...
2
votes
1answer
112 views
Pass headers using ServiceStack's Swagger UI
I am trying to add headers in our SS service using the APIMember attribute with ParameterType = "header".
Everything seems to be working except the header which is not getting added to the ...
0
votes
1answer
53 views
proper usages of url encoding
I am making an HTTP Client where I need to send HTTP get request to fetch data. I am using boost asio library, hence I have no way to use any standard url encoding library.
Here is what I got from ...
0
votes
1answer
38 views
Rails get header response for a remote image
I load in my app some Facebook image of users (and for performance I load the url of this picture on the DB). But when the user change the profile pic the url must be changed too.
How can I detect ...
0
votes
1answer
119 views
Setup Breeze JS ajax adapter to send query string params instead headers
Is it possible to setup Breeze JS ajax adapter to send additional query strings parameters? Now I am using custom headers params, but want to change our app to use query string params instead.
...
2
votes
0answers
58 views
Is it possible to get Safari to use HTTP Conditional Get for the first document?
I'm trying to add HTTP Conditional Get functionality to the first page of a mobile site. However, what I'm seeing is making me think that Safari simply doesn't support HTTP Conditional Get for the ...
2
votes
2answers
52 views
What content-type header has been set?
How can I find out if this header: header('Content-Type: application/json') has been set during script execution?
`
0
votes
1answer
25 views
ASIFormDataRequest ASIMultipartFormDataPostFormat header formatting
I have problem with the header formatting for multipart message. How to create one header with multiple values for one part.
What I want :
--0xKhTmLbOuNdArY-28217FDC-8163-459B-AB09-3DE87210721D
...
2
votes
0answers
60 views
with servicestack how can i prevent cookies being added to the response?
I can remove the cookies after the fact, with this:
public override void Configure(Funq.Container container)
{
ResponseFilters.Add((req, res, dto) =>
{
...
0
votes
1answer
12 views
Passing collection name dynamically
Can any one suggest for a simple but tricky query. I have a function like
public object GetPropertyValue(object obj_, string property_)
{
return HttpContext.Current.Request.Headers[property_];
...




