tags:

views:

83

answers:

1

How can I set the HTTP protocol version to HTTP/1.0 in the response of a IHttpHandler?

+1  A: 

You can't control the protocol version that IIS responds with.

IIS should respond in a manner consistent with a 1.0 client if the request indicates 1.0 however the response header will still indicate that the server supports 1.1.

This is correct behaviour.

AnthonyWJones