silverlight 4 OOB 应用程序在部署后无法运行
我有一个 silverlight 4 应用程序。
我通过使用以下命令调用 COM Excel,
excel = AutomationFactory.CreateObject("Excel.Application");
excel.Visible = true;
当我从 Visual Studio 运行它时,一切都按预期工作。但是当我将它部署到本地 IIS 中时,它没有出现。
我还在项目中选择了“需要提升信任”。
问题出在部署之后。
如果我缺少任何 IIS 设置。
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到 IIS 的配置:配置 IIS Silverlight
更新:
问题也可能是您的应用程序必须在浏览器外运行,因为您使用 COM 组件。
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.