使用 Windows 用户连接到 SQL Server Analysis

发布于 2024-08-04 08:13:19 字数 152 浏览 7 评论 0原文

如何使用 ADOMD.NET 模拟 Windows 用户连接到分析服务器?

Web服务器紧邻分析服务器,但它们不在域中。运行在Web服务器上的Web服务需要以特定的Windows帐户访问分析服务器。

我可以在连接字符串中添加一些内容,还是需要研究某种模拟?

How can you impersonate a windows user in a connection to an analysis server - using ADOMD.NET?

Webserver is next to Analysis server, but they are not in a domain. The webservice running on the webserver needs to access the analysis server as a specific windows account.

Is there something I can put in the connection string, or do I need to look into some kind of impersonation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寒冷纷飞旳雪 2024-08-11 08:13:19

尝试使用 Impersonator 类:

http://www.codeplex.com/ OlapPivotTableExtend/SourceControl/changeset/view/23587#288650

您可以通过执行以下操作来调用它:

using (new Impersonator(sUsername, sDomain, sPassword))   
{   
  AdomdConnection connCube = new AdomdConnection(sConnectionString);   
  connCube.Open();   
  //etc   
}  

此信息的原始参考是:

http://social.msdn.microsoft.com/Forums/en-US/sqlanalysisservices/thread/b35ab490-9a47-4312- b9b1-c22df2348356

我不想直接抢占别人的信息。

Try using the Impersonator class at:

http://www.codeplex.com/OlapPivotTableExtend/SourceControl/changeset/view/23587#288650

You call it by doing:

using (new Impersonator(sUsername, sDomain, sPassword))   
{   
  AdomdConnection connCube = new AdomdConnection(sConnectionString);   
  connCube.Open();   
  //etc   
}  

The original reference for this information is:

http://social.msdn.microsoft.com/Forums/en-US/sqlanalysisservices/thread/b35ab490-9a47-4312-b9b1-c22df2348356

I don't want to take credit for someone elses information directly.

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