silverlight 4 OOB 应用程序在部署后无法运行

发布于 2024-11-09 20:06:05 字数 318 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不吻晚风 2024-11-16 20:06:05

您可以在此处找到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文