2

I have a silverlight app hosted on "dev.system-engine.com" which creates an tcp connection connecting to "dev.system-engine.com"

the silverlight app and the policy file are on the "dev.system-engine.com" webserver.

"system-engine.com" and "dev.system-engine.com" are separate servers.

I cannot seem to get it to work. I have been struggling with the policyfile.

<?xml version="1.0" encoding="utf-8" ?>

<access-policy>

  <cross-domain-access>

<policy>

  <allow-from>

    <domain uri="http://dev.system-engine.com:80"/>

  </allow-from>

  <grant-to>

    <domain uri="http://dev.system-engine.com:80"/>
    <socket-resource port="80" protocol="tcp"/>
    <resource path="/" include-subpaths="true"/>

  </grant-to>

</policy>

Jeremy Gwa
  • 2,333
  • 7
  • 25
  • 31
  • You say the policy file is on the webserver, but where? It must be in the root of the server. – DaveB Feb 02 '10 at 19:21

1 Answers1

0

I also had this problem and resorted to using the crossdomain.xml file instead. See my answer in this question. I have never managed to get clientaccesspolicy.xml to work.

Community
  • 1
  • 1
Jeff Yates
  • 61,417
  • 20
  • 137
  • 189