0
votes
3answers
51 views
How to parse Date from HTTP Last-Modified header?
HTTP Last-Modified header contains date in following format (example):
Wed, 09 Apr 2008 23:55:38 GMT
What is the easiest way to parse java.util.Date from this string?
0
votes
0answers
6 views
Setting outbound ‘Expires:’ in Squid server’s HTTP header
I'm having a problem where items served by my Squid server are being cached by Limelight for too long, sometimes days. It happens when a piece of content has been static for a long time (weeks) and …
0
votes
1answer
31 views
Setting the Content Type of a ViewResult
I am trying to create an ActionResult that behaves in exactly the same manner as a ViewResult but allows me to specify the Content-Type header. This is difficult because from what I can tell ASP.Net …
0
votes
1answer
20 views
modify request headers in Internet Explorer
Hi
Is it possible to modify request headers sent by Internet Explorer. There are addins to do this for Mozilla Firefox. Is there a similar thing for IE.
Thanks in advance!!
1
vote
2answers
65 views
Refresh image with Javascript, but only if changed on server
I want to reload an image on a page if it has been updated on the server. In other questions it has been suggested to do something like
newImage.src = "http://localhost/image.jpg?" + new …
2
votes
10answers
82 views
I need some tool to view Http Request.
It's probably some browser plugin or a proxy.
For example, I open google.com, and type something and press 'Search'. And I want to see all params of http-request (like, method, domain, params etc)
0
votes
3answers
142 views
Internet Explorer blocked file download; file of “Unknown File Type”
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 …
1
vote
1answer
18 views
Getting 206 Partial Content and not sure why.
Hey guys,
I'm getting a 206 on some images, and I'm not quite sure why (thus how to solve it).
Basically all the images are being called through the css file.
background-image: …
2
votes
3answers
77 views
Is safe to use “X-…” header in a HTTP response?
I have to pass a meta-information in my HTTP response so I figured out that I could use the response header, for instance "X-MyData: 123456". Is that safe? I mean, there is a possibility that a client …
9
votes
3answers
3k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should …
0
votes
2answers
37 views
Python zlib not decodable when returned by an http response
I'm using Amazon S3 to serve static files. When the Content-Type is just 'text/css' and I haven't compressed the file, it is returned ok. If I try to zlib.compress() the contents that will be returned …
2
votes
3answers
262 views
ASP.NET: httpwebrequest date header workaround
I'm trying to integrate with an API that requires the "Date" header in a web request. As you may well know, .NET has removed the ability to append or even display a default Date header in your …
1
vote
0answers
48 views
Settings http headers in Java 6 SE httpserver
Hi,
I try to publish Atom feed (generated with Rome) using Java 6 SE httpserver. For correct feed discovery in FireFox I need custom headers.
This is my code:
Headers headers=e.getRequestHeaders();
…
0
votes
1answer
39 views
Set Response format inside a function according to Accept header and not outside with ResponseFormat = WebMessageFormat.Json in REST
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 …
0
votes
2answers
91 views
How to modify request headers in c#,ASP .NET.
I am working on a ASP .NET mVC project & i have to change HttpHeaders. see the foolowing code snippet:
WebRequest req= HttpWebRequest.Create("myURL");
HttpWebResponse response = …
