我可以更改WCF服务的userPrincipalName吗?

时间:2018-05-08 20:43:49

标签: c# asp.net asp.net-mvc web-services wcf

我有下一个代码

<endpoint address="http://localhost:.........svc">
                <identity>
                    <userPrincipalName value="someone@mydominio.com" />
                </identity>
            </endpoint>

我的问题是我可以将值更改为

<endpoint address="http://localhost:.........svc">
                    <identity>
                        <userPrincipalName value="other_someone@mydominio.com" />
                    </identity>
                </endpoint>
这是可能的吗? 或更改此USERPRINCIPALNAME的后果是什么?

1 个答案:

答案 0 :(得分:-1)

你可以。结果是它现在以具有该用户权限的用户身份运行。您可能还需要包含密码。

如果没有环境/应用程序的上下文,我们无法告诉您会发生什么。你总是可以改回来。