We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In chttpprotocol.cpp:501, iisnode uses IHttpResponse.SetHeader() to write HTTP header back to IIS. MSDN docs at http://msdn.microsoft.com/en-us/library/ms694295(v=vs.90).aspx.
As the last parameter is set to TRUE, iisnode keep replacing the response header, i.e. de-duping.
One thing that it broke is multiple "Set-Cookie" header, which could easily appears multiple times in a response header.
Please set it to FALSE, or whitelisting HTTP headers that allows multiple values.
Thanks!
The text was updated successfully, but these errors were encountered:
Thank you for reporting this. I will fix it in the next release.
Sorry, something went wrong.
0f65ec9
No branches or pull requests
In chttpprotocol.cpp:501, iisnode uses IHttpResponse.SetHeader() to write HTTP header back to IIS. MSDN docs at http://msdn.microsoft.com/en-us/library/ms694295(v=vs.90).aspx.
As the last parameter is set to TRUE, iisnode keep replacing the response header, i.e. de-duping.
One thing that it broke is multiple "Set-Cookie" header, which could easily appears multiple times in a response header.
Please set it to FALSE, or whitelisting HTTP headers that allows multiple values.
Thanks!
The text was updated successfully, but these errors were encountered: