Reputation: 405
I have a silverlight 4 application .
And I call the COM Excel by using the following
excel = AutomationFactory.CreateObject("Excel.Application");
excel.Visible = true;
Everything works as expected when i run it from visual studio. But when i deploy it in my local IIS, it does not come up.
I have also selected "Required elevated trust" in the project.
The problem is after deployment.
If there any IIS setting that I am missing.
Thank you.
Upvotes: 1
Views: 347
Reputation: 9129
The configuration of the IIS you find here: Configuring IIS for Silverlight
Updated:
The problem could also be that your application has to run out-of-browser, because you use COM components.
Upvotes: 1