Tagged Questions
The request-headers tag has no wiki summary.
3
votes
1answer
240 views
IIS7's custom redirection doesn't pass If-Modified-Since header. Bug?
We're using the following technique to catch all non-existing URLs and provide our own resulting page:
<handlers>
<add name="Foo" path="foo.aspx" verb="*" type="Foo.UrlHandler" ...
3
votes
1answer
276 views
Clone request headers in Vanilla Perl CGI to LWP UserAgent
I have a perl CGI application that I want to take the users request headers, and turn those around into an LWP::UserAgent get request. Basically the goal is to replicate the incoming users headers ...
2
votes
1answer
65 views
Finding timezone in HttpRequest from server side
I have tried var dateHeaders = HttpContext.Current.Request.Headers["Date"] but it contains null, apparently there is no such key.
Can anyone tell me where else can I find the time-zone of the current ...
2
votes
0answers
259 views
What's the best way to set custom request headers when using Capybara in RSpec request specs?
I'm monkey patching Capybara::Session with a set_headers method that assigns to Capybara::RackTest::Browser's options attribute (which I've changed from an attr_reader to an attr_accessor).
The ...
2
votes
2answers
1k views
When do browsers send application/octet-stream as Content-Type?
I'm developing a file upload with JSF. The application saves three dates about the file:
Filename
Bytes
Content-Type as submitted by the browser.
My problem is that some files are saved with ...
1
vote
2answers
206 views
How can I Monitor HTTP Traffic and Get a List of URLs in C#?
Basically, what we at the company are doing right now is plainly using HttpFox in Firefox to manually get webtrends tags and values that are appended as query string in an image/gif type url that is ...
1
vote
2answers
448 views
Getting request IP and headers
I am building a service in Windows Workflow Foundation 4.0 in Visual Studio designer mode.
How do I retrieve client IP and request headers in WF, VS Designer mode?
1
vote
1answer
700 views
How can the Accept-Encoding header be changed in IE with Url Monikers or other method?
I'm developing a browser plugin and server component system that streams content with a custom encoding type. Now I would like to be able to detect on the server side whether the client can handle the ...
1
vote
2answers
648 views
What is the value set for X-Forwarded-For header by Google App Engine URL Fetch?
Documentation says (http://code.google.com/appengine/docs/java/urlfetch/overview.html#Request_Headers):
These headers are set to accurate values by App Engine, as appropriate
Does the value for ...
0
votes
3answers
30 views
What is 'xmlhttp.setRequestHeader();' and in which situations is it used?
I stumbled on this command while learning AJAX. The guy who made the tutorial didn't explain this command, what do the parameters inside the command mean and what is it used for... Below is the code I ...
0
votes
1answer
36 views
tcpDump to get Request header on Shared hosting
I want to see request headers for my site, it is hosted on shared hosting, I call hosting company but engineer don’t know how to filter tcpdump for particular site. Because my site is hosted on shared ...
0
votes
0answers
164 views
jQuery & Opera 11 AJAX Request Headers - Cookie: PHPSESSID missing
I am having trouble getting Opera 11 (haven't tried lower versions) to send the correct AJAX request headers. The rest of browsers (Chrome, IE, Safari, Firefox) don't have this problem.
I am using a ...
0
votes
2answers
214 views
Add request headers with WebClient C#
I have the following code with which I download a web-page into a byte array and then print it with Response.Write:
WebClient client = new WebClient();
byte[] data = client.DownloadData(requestUri);
...
0
votes
1answer
37 views
How do i test www to non-www forwarding?
I'm using html5 boilerplate and I'm trying to test if my htaccess is working properly. When I type in www.domain.com into chrome or firefox it does not redirect. I'm thinking maybe this is just some ...
0
votes
1answer
235 views
add header to WebHeaderCollection in POST method windows phone 7
My server requires us to post a header that include device ID to server, normally we can do some thing like this:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(_connectionURL);
...
0
votes
2answers
102 views
How get all headers including post data in web Client class?
I'm looking for an code example how get all received headers in my web application including the post data.
something as:
String headers = client.Headers.ToString();
Response.Write(headers);
...
0
votes
1answer
390 views
how to received “Accept” header in REST web service server side
i have write a REST web service in java.But If I want to receive Accept : application/json header ,how to do that?If I want to receive more custom header like "CDMI-Speciation-1.0" , how can i receive ...
0
votes
2answers
182 views
How to make an AJAX-request look like a regular, normal request
What parameters on a $.ajax must I set to try and mask the AJAX-request as a normal request? I guess it has to do with the right headers.
I think a big part of the problem is that when working on a ...
0
votes
2answers
175 views
How can I redirect to an URL with custom headers using C#?
I have a bunch of parameters that I need to pass onto a second page via request headers. At first I tried via JS but I found out that that's impossible (please correct me if I'm wrong here).
So now ...
0
votes
1answer
40 views
Request header parameters
What are the use of the below parameters in request headers.
Accept-Encoding gzip, deflate
Keep-Alive 115
Proxy-Connection keep-alive
Cache-Control max-age=0
0
votes
1answer
347 views
Http-Server How to Create Request-Headers and response-Headers
SOS SOS SOS PLEASE!!!
I have created a primitive HttpServer in java which listens on port 80 and Uses Get method to open a file etc (127.0.0.1/index.html). ow i want create request headers ...
0
votes
3answers
118 views
Is it possible to check if a request was made from IMG tag?
I have an ActionResult at http://example/image.png
Is there a way to determine if the URL is being requested from
<img src="http://example/image.png" />
Or was opened from
<a ...
0
votes
2answers
176 views
How to check if page is being requested from a proxy?
I have a page: http://example/mypage
And there is a proxy that make a request to my page:
http://proxy/?url=http://example/mypage
How can I find out if the page is opening from a blank page ...
0
votes
2answers
1k views
Unknown authorization header - Error 401
I am accessing Google Spreadsheet feeds using HMAC-SH1 sign. My Code is :
GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters();
...
0
votes
1answer
516 views
App Engine webapp.RequestHandler child instances has no self.request during __init__
i use modified webapp.RequestHandler for handling requests in my app:
class MyRequestHandler(webapp.RequestHandler):
"""
Request handler with some facilities like user.
self.out is the ...
0
votes
1answer
1k views
Apache RequestHeader Directive in .htaccess
I am trying to use the following apache configuration on a Godaddy shared hosting account:
<Files ~ ".*">
<IfModule mod_headers.c>
RequestHeader unset Host
RequestHeader append Host ...