internet explorer - Silverlight application not funcitoning -


i have made silverlight application drag , drop uploading. now, application works fine when deploy local server. whenever deploy qa server (machine on same lan has global ip associated it), nothing. shows white background screen (default parameter). there no error couldn't find xap file or such, neither other console errors well. can't seem figure out error for.

as suggested other blogs , posts, have tried change extension xap dll, still same thing.

please help.

to access silverlight app on remote server, need put on root folder of server clientaccesspolicy.xml file.

a basic one, allowing use domain:

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

more details here: http://msdn.microsoft.com/fr-fr/library/cc197955%28v=vs.95%29.aspx


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -