Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
427 views

Respond to HTTP HEAD requests using ASP.NET MVC

I'd like to correctly support the HTTP HEAD request when bots hit my ASP.NET MVC site using HEAD. It was brought to my attention that all HTTP HEAD requests to the site were returning 404s, ...
0
votes
1answer
177 views

Making HTTP HEAD request with timeout in Ruby

In a Rails app, I'd like to make a HTTP HEAD request for a resource (a user-provided URL), to make sure that it exists. I'd also like a timeout, to ensure that the method fails after spending a ...
0
votes
4answers
75 views

Is the HEAD response faster than the GET?

I'm currently getting the info about the files with GET, will it be faster if I rewrite it using HEAD request? Cause I close the connection after the first response.
0
votes
2answers
329 views

Rails: periodically use HEAD to check for page changes

I have a Rails app implementing a game, so it's expected that a player will leave a browser open at the game page. When player Alan takes an action himself, I use AJAX requests to update the game page ...