Rav*_*ari 20 java eclipse apache tomcat cors
I am trying to consume some web services which are cross domain. When I disable chrome's web-security it is working fine. I want it to work without this so I have tried adding cross-domain.xml and still it didnt work. When i searched more, came to know about CORS enabling in tomcat.
from http://www.w3.org/wiki/CORS_Enabled
For Apache Apache can be configured to expose this header using mod_headers. This is enabled by default in Apache, however you may want to ensure it's enabled in your deployment by running the following command:
a2enmod headers
Run Code Online (Sandbox Code Playgroud)
To expose the header, you can add the following line inside , , and sections, or within an .htaccess file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
Run Code Online (Sandbox Code Playgroud)
Can anyone please let me know where to add these configurations in TOMCAT and in which files exactly. I am using tomcat from eclipse.
Appreciate any help.
检查以下答案:在Tomcat中设置CORS标头
请注意,您需要Tomcat 7.0.41或更高版本。
要知道Tomcat的当前实例在哪里,请尝试以下操作:
System.out.println(System.getProperty("catalina.base"));
Run Code Online (Sandbox Code Playgroud)
您将在控制台视图中看到该路径。
然后在该文件夹中查找/conf/web.xml,将其打开并添加以上链接的各行。
| 归档时间: |
|
| 查看次数: |
91255 次 |
| 最近记录: |