We are using IIS7 ARR (serverfarm) to handle load balancing for us.
We have one request, which comes in the form of a HEAD (instead of GET, PUT, POST, DELETE, etc) that I would like to handle at the ARR instead of farming the request out.
All that needs to happen is the server needs to respond with a status of 200.
I'm having trouble because the url for the head request is coming to the home page for the site (e.g. "www.mysite.com", not "www.mysite.com/handleHeadRequest).
Is there a way to do this with the ARR?
BTW: I'm fine if some programming is involved.