Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Wannan tattunawa ta zama daɗaɗɗiya. Yi sabuwar tambaya idan ka na bukatar taimako.

Application's javascript is not able to read any of the headers in a HEAD request

  • 4 amsoshi
  • 1 yana da wannan matsala
  • 11 views
  • Amsa ta ƙarshe daga mbucknell

more options

The response is sending the Access-Control-Expose-Headers as a comma separated list. For example:

Access-Control-Expose-Headers:"Total-Site-Count, BIODATA-Site-Count, NWIS-Site-Count, STEWARDS-Site-Count, STORET-Site-Count, Total-Result-Count, BIODATA-Result-Count, NWIS-Result-Count, STEWARDS-Result-Count, STORET-Result-Count, Warning, FATAL ERROR"

is in the response headers as our the headers themselves.

However, none of them are getting returned when executing getResponseAllHeaders or using getResponseHeader(xxx).

The response is sending the Access-Control-Expose-Headers as a comma separated list. For example: Access-Control-Expose-Headers:"Total-Site-Count, BIODATA-Site-Count, NWIS-Site-Count, STEWARDS-Site-Count, STORET-Site-Count, Total-Result-Count, BIODATA-Result-Count, NWIS-Result-Count, STEWARDS-Result-Count, STORET-Result-Count, Warning, FATAL ERROR" is in the response headers as our the headers themselves. However, none of them are getting returned when executing getResponseAllHeaders or using getResponseHeader(xxx).

Mafitar da aka zaɓa

I figured out what the issue was. One of the headers was "FATAL ERROR". That space seems to be what caused the issue. When I changed the server to set the header to 'FATAL-ERROR', firefox worked perfectly

Karanta wannan amsa a matsayinta 👍 0

All Replies (4)

more options

The examples on MDN do include using getResponseHeader so on that basis, I think it should work:

https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest#Get_last_modified_date

Do you have a page online demonstrating this problem?

more options

The application that I'm testing is not out in the wild because its not working. I'll have to think about how to get a test implementation online. In the meantime, I have attached the network page of the debug tool, showing the response and request headers.

As further information, the application is working in IE11, latest Chrome, and the latest Safari.

Thank you for your time.

more options

Some more additional information. If the list of Allow-Control-Expose-Headers are sent separately, ie one for each custom header we want to be able to read, Firefox works. Of course then IE11, doesn't. It seems like the standard says they should be specified as a comma separated list.

more options

Zaɓi Mafita

I figured out what the issue was. One of the headers was "FATAL ERROR". That space seems to be what caused the issue. When I changed the server to set the header to 'FATAL-ERROR', firefox worked perfectly