netmajor
netmajor

Reputation: 6585

where put clientaccesspolicy.xml and crossdomain.xml ? - 404 not found error

I have Silverlight app and when I want to do some action Firebug show me that on this two files I have 404 not found error.

So should I insert this files somewhere in my solution or to IIS rootwww directory?

Or it's other solution of this error?

Upvotes: 1

Views: 2744

Answers (1)

Steve Danner
Steve Danner

Reputation: 22198

You should put those files in the root virtual directory of IIS, which defaults to C:\Inetpub\wwwroot\, such that the file shows up as "http://<yourdomain>/clientaccesspolicy.xml", or "http://<yourserver>/clientaccesspolicy.xml".

Upvotes: 2

Related Questions