crossdomain.xml在weblogic上的部署
作者:互联网
摘要:
Flex API的程序访问ArcGIS Server时,经常遇到安全沙箱的问题。crossdomain.xml配置文件可以解决这个问题,在tomcat服务器只需要把这个文件放到webapps根目录下。WebLogic的配置要稍微麻烦一些。
内容:
1、新建一个ROOT文件夹,把crossdomain拷贝到这个文件夹下。
2、在ROOT文件夹下新建一个weblogic.xml文件,文件的内容如下:
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1
//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">
<weblogic-web-app>
<container-descriptor>
<index-directory-enabled>true</index-directory-enabled>
<default-mime-type>text/x-cross-domain-policy</default-mime-type>
</container-descriptor>
<context-root>/</context-root>
</weblogic-web-app>
3、在WEB-INF目录下新建一个web.xml文件,内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app id="WebApp_ID">
<display-name>root</display-name>
</web-app>
4、在WebLogic控制台安装这个应用。之后就可以通过http://<servername>:7001/crossdomain.xml访问了
转载于:https://www.cnblogs.com/xgyb12458/archive/2011/06/02/2067616.html
标签:xml,web,http,crossdomain,dtd,weblogic,com 来源: https://blog.csdn.net/weixin_33682719/article/details/93979247