来自不受信任域的集成 SQL 服务器身份验证
我真的想从 C#/.NET 应用程序使用 SQL 服务器,而不使用 SQL 服务器帐户或将受影响的计算机添加到同一域或任何域,或者使用与域相同的登录名。
难道就没有什么办法吗? 有人尝试使用 SSPI 的 MONO 实现来做到这一点吗?
I really want to use SQL-server from a C#/.NET appliaction without using SQL-Server accounts or adding the affected computer to the same domain or to any domain at all or to use the same logon-name as the domain.
Isn't there any way? Did someone try to do this using the MONO implementation of SSPI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要重新表述您的问题,您想使用没有域的域身份验证。
不,那不可能。
您可以在域上分别设置它们并使用域之间的信任,也可以使用 SQL 身份验证。
To rephrase your question, you want to use domain authentication without domains.
No, that's not possible.
You can set them each up on domains and use trusts between the domains, or you can use SQL authentication.
您是否考虑过在应用程序中使用模拟?
Have you considered using impersonation in the application ?