wrkbrs

ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION - Duplicate headers received from server issue on chrome 본문

Web dev

ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION - Duplicate headers received from server issue on chrome

zcarc 2019. 3. 19. 08:50

Hi,
 
Recently, in my project while downloading some files(not on all files) i am getting exception on chrome, that say :
 
Duplicate headers received from server

Error 349 (net::ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION): Multiple Content-Disposition headers received. This is disallowed to protect against HTTP response-splitting attacks.
 

But when i download the same files on IE, Firefox and other browsers that causing exception, no problem occur it work like charm. :)
 
But its weird that why is chrome giving exception only on some files while downloading, then i searched, i found that new release of chrome has this problem. It seem like Content-disposition header become very strict and sensitive, in the spec that chrome uses.
 
Solution that worked for me to solve the problem :
 
Wrong :

response.setHeader(“Content-disposition”, “attachment; filename=${fileName}”)

Correct :

response.setHeader(“Content-disposition”, “attachment; filename=\””+fileName+”\””)
 
It worked for me. Hope it helps you also :)
 
Thanks,
Tarun Pareek
tarun@intelligrape.com

More Blogs by Me


http://www.tothenew.com/blog/duplicate-headers-received-from-server-fix-for-chrome/