Hi Support team
Could we add http response headers via the configuration in appengine-web.xml?
I have tried to add the following to appengine-web.xml. however the header is only added to html resources. Is it possible that we can add respone headers to all responses?
For Jetty, it is possible by using rewrite in Jetty configuration but don't want directly configure Jetty (like add Jetty filters, etc )
thank you
Jie
<static-files>
<include path="/**" >
<http-header name="Access-Control-Allow-Origin"
value="http://example.org" />
</include>
</static-files>