我可以设置一个 COM+用于创建“一次性”应用程序的应用程序进程外服务器?
如果我自己编写一个进程外 COM 服务器,我可以通过指定 CoRegisterClassObject()
调用中的REGCLS_SINGLEUSE
标志。
当我创建 COM+ 应用程序并在那里添加进程内服务器以便使用 COM+ 代理并且不需要编写代理代码时,如何才能达到相同的效果?换句话说,如何使 COM+ 创建的进程外 COM 服务器“单独使用”?
If I write an out-proc COM server myself I can make it "single use" by specifying REGCLS_SINGLEUSE
flag in CoRegisterClassObject()
call.
How can I achieve the same effect when I create a COM+ application and add an in-proc server there so that COM+ surrogate is used and I don't need to write surrogate code? In other words, how can I make the out-proc COM server created by COM+ "single use"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不能说我曾经尝试过它,但看起来好像 COM+ 应用程序的 COM+ Catalog 属性
RecycleActivationLimit
如果将其设置为 1,可能会执行您想要的操作。I can't say that I've ever tried it, but it looks as though the COM+ Catalog property
RecycleActivationLimit
of a COM+ Application might do what you want if you set it to 1.