如何为客户端访问策略文件中的端口指定通配符'*'?
如果我想在以下文件中指定多个端口,那么无论如何都要使用通配符而不是显式列出每个服务器:
<?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="http://*.foobar.net:81" />
<domain uri="http://*.foobar.net:82" />
<domain uri="http://*.foobar.net:83" />
<domain uri="http://*.foobar.net:84" />
</allow-from>
<grant-to>
<resource path="/*" include-subpaths="true"/>
</grant-to>
</policy>
理想情况下,我希望能够做到这样的事情:
<?xml version="1.0" encoding="utf-8"?>
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="http://*.foobar.net:*" />
</allow-from>
<grant-to>
<resource path="/*" include-subpaths="true"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
我怀疑是否允许这样做是因为包含端口号的地址被视为另一个域,因此需要跨域策略文件以及客户端访问策略文件,任何人都可以确认或否认这一点?