COM+ 需要什么帐户?使用 regasm 时组件会在什么情况下运行?
通过 regasm 工具注册时,COM+ 组件在什么帐户下运行?我没有注意到 regasm 的任何命令参数来识别帐户。鉴于 regasm 需要管理员权限才能运行,我假设 COM+ 组件也以管理员权限运行?
What account do COM+ components run under when registered via the regasm tool? I didn't notice any command parameters for regasm to identify the account. Given regasm requires admin privileges to run, I'm assuming COM+ components run w/admin privs as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的组件是用什么语言编写的?
如果是在 .NET 中,您可以设置程序集属性来控制 COM+ 应用程序的安全配置。
签出 http://msdn.microsoft.com/en-us/library/c11b9998 .aspx
,特别是:http:// msdn.microsoft.com/en-us/library/system.enterpriseservices.applicationaccesscontrolattribute.aspx
我不知道有任何可以授予您权限的 regasm 命令参数。
如果您能更具体地说明您要做什么,我也许可以帮助您。
What language is your component written in?
if it's in .NET you can set assembly attributes that can control the security configuration of your COM+ application.
checkout http://msdn.microsoft.com/en-us/library/c11b9998.aspx
and in particular: http://msdn.microsoft.com/en-us/library/system.enterpriseservices.applicationaccesscontrolattribute.aspx
I don't know of any command parameters for regasm that can give you permissions.
if you will be more specific about what you are trying to do, I might be able to help you.