Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xbap fails to load in internet explorer

There is one user who only get a dialogue box and download error when browsing to my xbap application. I've got several other client users without this problem.

What could be causing internet explorer not to be able to display the xbap?

like image 235
Makach Avatar asked Sep 01 '10 11:09

Makach


1 Answers

Without knowing exactly what the errors state, this sounds like an issue with trust on the client workstation. Try these troubleshooting steps:

Wrong version of .net Framework

Make sure the user's version .net is up to date

Corrupt installation of .net Framework

Try re-installing the .net framework on the user's computer. If that doesn't work, try re-installing IE.

Enable FullTrust in IE

Partial trust may be enabled the client may need to grant permission to the application URL or add it as a trusted site. Alternatively, make sure that the XBAP is deployed with FullTrust. If this is being deplyed in an intranet environment you can deploy a custom CLR Security policy the modify default permission levels.

like image 146
NakedBrunch Avatar answered Nov 14 '22 18:11

NakedBrunch