Can Web.config cause "NotFound" error?

Discussion in 'Silverlight' started by FrankParis, May 8, 2010.

  1. Even with clientaccesspolicy.xml, get NotFound

    This is the text that my exception handler returned:

    I ran Fiddler while it was running, but I don't understand enough about it to get any information about what happened. It did fix another bug I had, though, where images were not being displayed on the Welcome splash screen. So progress of sorts, anyhow. But still no success in the Web service, which of course is my primary concern.


    Edit: I ran it on my wife's machine and I got something more interesting, and I got the same thing on my machine earlier today but didn't copy it:

    It's bedtime and I don't have time to look at this further right now, but that microsoft link might be interesting.

    Edit 2: wrong. The link goes nowhere.

    This is my clientaccesspolicy.xml file:

    Code:
    <?xml version="1.0" encoding="utf-8" ?>
    <access-policy>
      <cross-domain-access>
        <policy>
          <allow-from>
            <domain uri="*" />
          </allow-from>
          <grant-to>
            <resource path="/" include-subpaths="true" />
          </grant-to>
        </policy>
      </cross-domain-access>
    </access-policy>
     

Share This Page