Expand my Community achievements bar.

SOLVED

content-length is missing in html response header in dispatcher.

Avatar

Level 2

Hi,

content-length has not appeared on HTML header response.
I have added "content-length" in /clientheaders in dispatcher.any file as per documentation.
Still, this does not appear in the header response for HTML.

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @onkarh71407069 

 

/clientheaders is not for adding headers to response but to allow headers to pass to publisher iinstance from request. 

Could you check if you have enabled caching html headers on dispatcher. If a request is being served from dispatcher and headers are not being cached, the response headers will miss the actual response headers. 

To enable header caching, add /headers section to /cache section like

/cache {
  ...
  /headers {
    "Cache-Control"
    "Content-Disposition"
    "Content-Type"
    "Expires"
    "Last-Modified"
    "X-Content-Type-Options"
    "Last-Modified"
"content-length" } }

 

Make sure your content-length header is part of the list. Also, remove cached pages after you make changes and restart apache servers.

 

You can read more about this dispatcher configuration from https://docs.adobe.com/content/help/en/experience-manager-dispatcher/using/configuring/dispatcher-co....

 

Hope it helps!

Thanks!

Nupur 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @onkarh71407069 

 

/clientheaders is not for adding headers to response but to allow headers to pass to publisher iinstance from request. 

Could you check if you have enabled caching html headers on dispatcher. If a request is being served from dispatcher and headers are not being cached, the response headers will miss the actual response headers. 

To enable header caching, add /headers section to /cache section like

/cache {
  ...
  /headers {
    "Cache-Control"
    "Content-Disposition"
    "Content-Type"
    "Expires"
    "Last-Modified"
    "X-Content-Type-Options"
    "Last-Modified"
"content-length" } }

 

Make sure your content-length header is part of the list. Also, remove cached pages after you make changes and restart apache servers.

 

You can read more about this dispatcher configuration from https://docs.adobe.com/content/help/en/experience-manager-dispatcher/using/configuring/dispatcher-co....

 

Hope it helps!

Thanks!

Nupur