”内存不足。立即保存文档。”打开Word 2003文档时出错
我开发了一个Windows服务,我试图通过它打开一个Word文档。但是,当服务尝试打开文档时,它会记录以下错误“内存不足。立即保存文档。”
如果我运行与普通 Windows 应用程序相同的程序,它工作正常,但只有当我尝试将该程序作为 Windows 服务运行时才会出现问题。
我试图用谷歌搜索这个问题,但关于这个问题的答案并不多。有没有办法增加Windows服务或进程的内存限制?就像在 Java 世界中一样,我们可以在执行 java 类 java -Xmx800M
时指定内存限制。 Windows 进程有类似的东西吗?
有谁知道如何解决这个问题?我使用C#、.net Framework 2.0和office 2003进行开发。
I have developed one windows service through which I am trying to open an word document. But when service tries to open document, it logs following error "There is insufficient memory. Save the document now."
If I run the same program as normal windows application, it works fine but problem comes only when I try to run the program as windows service.
I tried to google this problem, but there arent many answers about this problem. Is there any way to increase the memory limit for windows service or process? Something like in Java world, where we can specify memory limit while executing java class java -Xmx800M
. Is there something similar for windows processes?
Does anyone knows how to solve this problem? I am using C#, .net framework 2.0 and office 2003 for development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现微软在服务器端代码上不推荐办公自动化。
可以在此处找到更多信息。
编辑 :
我发现另一篇文章关于服务器端代码中的办公自动化。
I found out that office automation is not recommended by microsoft on server side code.
More information can be found here.
EDIT :
I found one more article regarding office automation in server side code.