将用户凭据从 aspnet 站点传递到 wcf 服务

发布于 2024-10-14 05:03:01 字数 520 浏览 3 评论 0原文

如何将用户凭据从 aspnet 站点传递到 wcf 服务?

  • 无需冒充。 (网站必须由特定用户执行)
  • 无需知道调用者密码。
  • 仅传递某种神秘的安全上下文。

网站和 WCF 服务都使用 Windows/NTLM 登录:身份验证模式 =“Windows”

WCF 服务使用:绑定 =“wsHttpBinding”

IIS 7.5。 2 台服务器 (2008r2)。

网站代码隐藏(当前 - 为执行网站的用户传递凭据):

protected void btSend_Click(object sender, EventArgs e)
{
  FunctionWhichCanOnlyBeCalledByASpecificUser();
  MyService.MyServiceClient s = new MyService.MyServiceClient();
  s.SendMyMessage(tbMessage.Text);
}

How do I pass user credentials from aspnet site to wcf service?

  • Without impersonating. (web site must be executed by a specific user)
  • Without knowing the callers password.
  • Only passing some kind of mystic security context.

Both website and WCF service use logon with windows/NTLM: authentication mode="Windows"

WCF service using: binding="wsHttpBinding"

IIS 7.5. 2 servers (2008r2).

website code behind (current - passing credentials for user which executes website):

protected void btSend_Click(object sender, EventArgs e)
{
  FunctionWhichCanOnlyBeCalledByASpecificUser();
  MyService.MyServiceClient s = new MyService.MyServiceClient();
  s.SendMyMessage(tbMessage.Text);
}

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

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

发布评论

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

评论(1

享受孤独 2024-10-21 05:03:01

在许多情况下,您可以使用 ASP.NET 兼容模式,只需将此行添加到您的配置中:

 <system.serviceModel>        
      <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />    
 </system.serviceModel>

参考

In many cases you can use ASP.NET Compatibility Mode just add this line to your config:

 <system.serviceModel>        
      <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />    
 </system.serviceModel>

Reference

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