CrossSiteAccessPolicies
Used by the StreamingEndpoint and Channel entities to specify cross site access policies for various clients.
Name | Type | Description |
---|---|---|
ClientAccessPolicy Optional. |
Edm.String | Use this property to specify the client access policy for Microsoft Silverlight clients. The following example defines clientaccesspolicy xml. <?xml version="1.0" encoding="utf-8"?> <access-policy> <cross-domain-access> <policy> <allow-from http-request-headers='*'> <domain uri='http://*' /> </allow-from> <grant-to> <resource path='/' include-subpaths='false' /> </grant-to> </policy> </cross-domain-access> </access-policy> |
CrossDomainPolicy Optional. |
Edm.String | Use this property to specify the cross domain access policy for Adobe Flash clients. The following example defines crossdomain xml. <?xml version="1.0" ?> <!DOCTYPE cross-domain-policy SYSTEM 'http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd'> <cross-domain-policy> <allow-access-from domain='*' /> </cross-domain-policy> |