Custom repsonse header set in JSP not set via Dispatcher
I am trying to set a custom response header in my jsp via:
<% response.setHeader("my-custom-header", "custom-value"); %>When I access the page directly through the Publisher, I can see the header being set. However, when I hit the same page through the Dispatcher, the header is not there.
I checked the dispatcher.any file and the /clientheaders property is set to "*" to let all headers through.
Would any one know why the header is not present when accessing through the Dispatcher?
Thanks!