WCF 用户名 clientCredentialType

发布于 2024-10-27 22:13:17 字数 1036 浏览 1 评论 0原文

我有一个具有以下配置的 WCF 服务:

        <service behaviorConfiguration="MyServiceBehavior" name="Service1">
            <endpoint address=""
                      binding="wsHttpBinding" bindingConfiguration="MembershipBinding"
                      name="ASPmemberUserName" contract="TestWcfService.IService1" />           
        </service>
         .
         .
         .
         .
         .
        <wsHttpBinding>
            <binding name="MembershipBinding">
                <security mode="Message">
                    <message clientCredentialType="UserName" />
                </security>
            </binding>
        </wsHttpBinding>

我想将用户名传递给客户端上的服务代理并在服务器端检索它。我使用以下代码将用户名传递给代理类:

Service1Client sc = new Service1Client();

sc.ClientCredentials.UserName.UserName = HttpContext.Current.User.Identity.Name;

当我尝试在服务器上检索用户名时,ServiceSecurityContext.Current 返回 null。有什么想法为什么会这样吗?

I have a WCF service with following configuration:

        <service behaviorConfiguration="MyServiceBehavior" name="Service1">
            <endpoint address=""
                      binding="wsHttpBinding" bindingConfiguration="MembershipBinding"
                      name="ASPmemberUserName" contract="TestWcfService.IService1" />           
        </service>
         .
         .
         .
         .
         .
        <wsHttpBinding>
            <binding name="MembershipBinding">
                <security mode="Message">
                    <message clientCredentialType="UserName" />
                </security>
            </binding>
        </wsHttpBinding>

I want to pass the username to the service proxy on client and retrieve it on the server side. I use bellow code to pass the user name to the proxy class:

Service1Client sc = new Service1Client();

sc.ClientCredentials.UserName.UserName = HttpContext.Current.User.Identity.Name;

When I try to retrieve the username on the server, the ServiceSecurityContext.Current returns null. Any ideas why it acts like this?

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

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

发布评论

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

评论(1

枫林﹌晚霞¤ 2024-11-03 22:13:17

该问题是由证书设置引起的。以下链接帮助解决了该问题:

具有用户名密码身份验证的简单 WCF 服务:他们不会告诉您的事情

The problem was caused by certificate settings. Below link helped solve the issue:

A simple WCF service with username password authentication: the things they don’t tell you

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