Sharepoint 2010 人拾荒者。我无法在管理中心网站接收FBA用户

Sharepoint 2010 人拾荒者。我无法在管理中心网站接收FBA用户,sharepoint-2010,claims-based-identity,fba,Sharepoint 2010,Claims Based Identity,Fba,我的数据库成员身份3位于\sharepoint有许多成员用户 我的管理中心网站有web.config文件 <configuration> <connectionStrings> <add connectionString="Server=.\sharepoint;Database=membership3;Integrated Security=true" name="SQLAuthConnectionString" /> </connection

我的数据库成员身份3位于\sharepoint有许多成员用户

我的管理中心网站有web.config文件

<configuration>

<connectionStrings>
   <add connectionString="Server=.\sharepoint;Database=membership3;Integrated Security=true" name="SQLAuthConnectionString" />
</connectionStrings>

<SharePoint>
   <PeoplePickerWildcards>
      <clear />
      <add key="SQLAuthConnectionString" value="%" />
      <add key="SQLMembershipProvider" value="%" />
      <add key="SQLRoleManager" value="%" />
  </PeoplePickerWildcards>
</SharePoint>

<system.web>
   <roleManager defaultProvider="AspNetWindowsTokenRoleProvider" enabled="true" cacheRolesInCookie="false">
       <providers>
          <add name="SQLRoleManager" connectionStringName="SQLAuthConnectionString" applicationName="/" description="My Role Provider" 
               type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
       </providers>
   </roleManager>
   <membership defaultProvider="SQLMembershipProvider">
   <providers>
      <add name="SQLMembershipProvider" 
           type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
           connectionStringName="SQLAuthConnectionString" passwordAttemptWindow="5" applicationName="/" enablePasswordReset="true" 
           enablePasswordRetrieval="false" passwordFormat="Clear" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" />
    </providers>
 </membership>
</system.web>

</configuration>

我的新索赔网站有web.config文件:

<configuration>

 <SharePoint>
    <PeoplePickerWildcards>
       <clear />
       <add key="SQLAuthConnectionString" value="%" />
       <add key="SQLMembershipProvider" value="%" />
       <add key="SQLRoleManager" value="%" />
    </PeoplePickerWildcards>
 </SharePoint>

 <system.web>
    <membership defaultProvider="i">
       <providers>
          <add name="i" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
          <add name="SQLMembershipProvider" 
               type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
               connectionStringName="SQLAuthConnectionString" passwordAttemptWindow="5" applicationName="/" enablePasswordReset="true" 
               enablePasswordRetrieval="false" passwordFormat="Clear" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" />
       </providers>
    </membership>
    <roleManager defaultProvider="c" enabled="true" cacheRolesInCookie="false">
       <providers>
          <add name="c" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthRoleProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
          <add name="SQLRoleManager" 
            connectionStringName="SQLAuthConnectionString" applicationName="/" description="My Role Provider" 
            type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
       </providers>
    </roleManager>
 </system.web>

</configuration>

文件C:\Program Files\Common Files\Microsoft Shared\Web服务器扩展\14\WebServices\Root\Web.config:

<configuration>

 <system.web>
    <membership defaultProvider="i">
       <providers>
          <clear />
             <add name="i" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
              <add name="SQLMembershipProvider" 
                   type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
                   connectionStringName="SQLAuthConnectionString" passwordAttemptWindow="5" enablePasswordRetrieval="false" enablePasswordReset="true" 
                   requiresQuestionAndAnswer="false" applicationName="/" requiresUniqueEmail="true" passwordFormat="Clear" />
       </providers>
    </membership>
    <roleManager enabled="true" defaultProvider="c">
       <providers>
          <clear />
          <add name="c" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthRoleProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
          <add name="SQLRoleManager" connectionStringName="SQLAuthConnectionString" applicationName="/" description="My Role Provider" 
               type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
       </providers>
    </roleManager>
 </system.web>

    <connectionStrings>
       <add connectionString="Server=.\sharepoint;Database=membership3;Integrated Security=true" name="SQLAuthConnectionString" />
    </connectionStrings>
</configuration>


我想在管理中心网站中设置用户策略,FBA用户不会进入人员选取器。但我的基于声明的身份验证网站登录任何FBA用户。管理中心站点设置有什么问题?

您是否尝试在CA人员选取器中写入用户的确切姓名?

添加

<add name="i" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />

在梅尔姆贝尔希普 及



在中央管理web配置文件的角色管理器中

是。我已经尝试过写下确切的名称user1和搜索模式user%。你最终解决了这个问题吗?这个问题对我来说没有解决。我们的案例是连接字符串中的一个输入错误。因此,请仔细检查所有设置,或者从有效的配置中复制粘贴。
<add name="c" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthRoleProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />