You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When issuing a HTTP/1.0 request to an IIS app using the iisnode module the server returns HTTP 500. I'm wondering whether that's the intended/expected behavior? It works fine when running the node app with node.exe directly.
In case it's not it can easily be reproduced with for instance curl http://localhost/foo.js --http1.0
The text was updated successfully, but these errors were encountered:
Following http://www.ietf.org/rfc/rfc2145.txt, the fix is for iisnode to relax the validation of the HTTP version number on the HTTP response generated by node.js. This allows node.js applications to send 1.1 responses to 1.0 requests.
When issuing a HTTP/1.0 request to an IIS app using the iisnode module the server returns HTTP 500. I'm wondering whether that's the intended/expected behavior? It works fine when running the node app with node.exe directly.
In case it's not it can easily be reproduced with for instance
curl http://localhost/foo.js --http1.0
The text was updated successfully, but these errors were encountered: