2013-10-26 83 views
1

我完全沮喪嘗試實現自定義RoleProvider。我被掛上了「找不到默認角色提供者」。錯誤信息。這裏是我的web.config:MVC 4.5自定義角色提供程序錯誤(defaultProvider無法找到)

<?xml version="1.0" encoding="utf-8"?> 
<!-- 
    For more information on how to configure your ASP.NET application, please visit 
    http://go.microsoft.com/fwlink/?LinkId=169433 
    --> 
<configuration> 
    <configSections> 
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> 
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> 
    </configSections> 
    <appSettings> 
    <add key="webpages:Version" value="2.0.0.0" /> 
    <add key="webpages:Enabled" value="false" /> 
    <add key="PreserveLoginUrl" value="true" /> 
    <add key="ClientValidationEnabled" value="true" /> 
    <add key="UnobtrusiveJavaScriptEnabled" value="true" /> 
    </appSettings> 
    <system.web> 
    <httpRuntime targetFramework="4.5" /> 
    <compilation debug="true" targetFramework="4.5"> 
     <assemblies> 
     <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
     </assemblies> 
    </compilation> 
    <authentication mode="Forms"> 
     <forms loginUrl="~/Account/Login" timeout="900" /> 
    </authentication> 
    <roleManager enabled="true" defaultProvider="AccountRoleProvider"> 
     <providers> 
     <clear/> 
     <add name="AccountRoleProvider" 
      type="Billing.Business.AccountRoleProvider, Billing" 
      enablePasswordRetrieval="false" enablePasswordReset="true" 
      requiresQuestionAndAnswer="false" writeExceptionsToEventLog="false" /> 
     </providers> 
    </roleManager> 
    <pages> 
     <namespaces> 
     <add namespace="System.Web.Helpers" /> 
     <add namespace="System.Web.Mvc" /> 
     <add namespace="System.Web.Mvc.Ajax" /> 
     <add namespace="System.Web.Mvc.Html" /> 
     <add namespace="System.Web.Routing" /> 
     <add namespace="System.Web.WebPages" /> 
     <add namespace="System.Web.Optimization" /> 
     </namespaces> 
    </pages> 
    </system.web> 
    <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <handlers> 
     <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" /> 
     <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" /> 
     <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> 
     <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> 
     <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> 
     <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> 
    </handlers> 
    </system.webServer> 
</configuration> 

這裏是自定義RoleProvider類的代碼:

namespace Billing.Business 
{ 
    public class AccountRoleProvider : RoleProvider 
    { 
     ... 

     public override string[] GetRolesForUser(string username) 
     { 
      List<string> userRoles = new List<string>(); 
      var entities = new CRSCommonEntities(); 
      short role = entities.CrsAppUsers.First(u => u.UserName == username).UserType; 

      if (role >= (short)UserRole.ADMIN) 
      { 
       userRoles.Add(UserRole.ADMIN.ToString()); 
      } 

      if (role >= (short)UserRole.STAFF) 
      { 
       userRoles.Add(UserRole.STAFF.ToString()); 
      } 

      if (role >= (short)UserRole.CHAIN) 
      { 
       userRoles.Add(UserRole.CHAIN.ToString()); 
      } 

      if (role >= (short)UserRole.PROPERTY) 
      { 
       userRoles.Add(UserRole.PROPERTY.ToString()); 
      } 

      return userRoles.ToArray(); 
     } 

     /// <summary> 
     /// This returns true if the user has an access level at or above the request level 
     /// </summary> 
     /// <param name="username"></param> 
     /// <param name="roleName"></param> 
     /// <returns></returns> 
     public override bool IsUserInRole(string username, string roleName) 
     { 
      var entities = new CRSCommonEntities(); 
      var user = entities.AppUsers.Single(u => u.UserName == username); 

      return user.UserType >= (short)Enum.Parse(typeof(UserRole), roleName); 
     } 

     ... 
    } 
} 

如果你們能幫助我發現我在做什麼錯了,我只是沒有看到它現在我已經開始了兩天了。謝謝!

回答

1

我最後弄明白了。提供者的名稱覆蓋必須與web.config中設置的名稱相同。我只是必須將獲取返回值更改爲「AccountRoleProvider」,它的工作原理!

0

type="Billing.Business.AccountRoleProvider, Billing"

是您的組件供應商位於內稱爲Billing?很可能你的程序集被稱爲更多。

如果它實際上被稱爲Billing,請確保包含您的Web.config的程序集參考Billing

+0

您好,非常感謝您的回覆。該程序集稱爲Billing,web.config和提供程序在同一個應用程序中。 –

相關問題