【问题标题】:SharePoint 2010 Claims Auth/FBA - Reset password not workingSharePoint 2010 声明身份验证/FBA - 重置密码不起作用
【发布时间】:2011-08-17 02:21:55
【问题描述】:

我有一个带有声明身份验证和 FBA 设置的 SP 站点。 Dual auth Win/Forms 运行良好。

我在应用页面上有一个 asp:PasswordRecovery 控件。 它似乎可以正确查找帐户 - 如果未找到用户名,则返回“未找到”消息。但是,它无法使用以下执行重置密码:

Exception information: 
   Exception type: NotImplementedException   
   Exception message: The method or operation is not implemented.   


Thread information: 
Thread ID: 10 
Thread account name: SERVER01\SPS_Farm 
Is impersonating: False 
Stack trace:    at    Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider.GetUser(String name, Boolean userIsOnline)  
at System.Web.Security.MembershipProvider.GetUser(String username, Boolean userIsOnline, Boolean throwOnError)  
at System.Web.UI.WebControls.PasswordRecovery.AttemptSendPasswordUserNameView()  
at System.Web.UI.WebControls.PasswordRecovery.OnBubbleEvent(Object source, EventArgs e)  
at System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args)  
at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)  
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  

提前致谢。

更新:
我补充说:
enablePasswordReset="true"
到应用程序 web.config 和令牌服务 web.config

编写了一些代码进行手动测试,当我的代码尝试“重置”密码时仍然得到这个:
此提供程序未配置为允许密码重置。要启用密码重置,请在配置文件中将 enablePasswordReset 设置为“true”。

【问题讨论】:

    标签: sharepoint sharepoint-2010 forms-authentication forgot-password claims


    【解决方案1】:

    这可能无济于事,因为您似乎正在正确查找用户...但如果您不这样做,我知道您可能会遇到未实施的问题:

    确保使用适当的 Membership Provider 获取用户实例。

    例如

    MembershipUser myUser = Membership.Providers["aspMembership"].GetUser(userName, false);
    

    希望这会有所帮助。

    【讨论】:

    • 是的,这就是问题所在……我的代码试图使用似乎不允许的“索赔提供者”。我还必须直接将成员资格提供程序和连接信息添加到 SharePoint 站点 web.config。 (我不需要它来执行登录,因为这是通过声明进行的。)
    猜你喜欢
    • 2012-12-24
    • 1970-01-01
    • 2011-06-24
    • 1970-01-01
    • 2021-02-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多