views:

25

answers:

1

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?

+2  A: 

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".

Steve Danner
should I have my application in root virtual directory to it works ok?
netmajor
No, where your application resides should have no bearing on the placement of the clientaccesspolicy file.
Steve Danner