Problem with a trusted Silverlight 5 application

In silverlight5 beta, it supports a trust application that allows you to download local files. I tried and it works great in both OOB and browser mode. One question is that when you install the cap on the server, it works fine in OOB mode, but it doesn’t work in the browser. I think that debugging locally and deployment are different. Is there a way to request trust in the browser as I tried locally?

Thanks Howard

+4
source share
1 answer

Several steps are required: -

  • XAP must be signed with a code signing certificate

Then on the client machine

  • Configure the registry on a client computer that needs to run a trusted inbrowser application
  • Then, a code signing certificate must be installed on the client machine.

Those last two real-world deployments will be configured using Group Policy.

See Beta Document How to enable trusted applications to run inside the browser .

+3
source

All Articles