I m a beginner in using rhino security and creating a sample application i followed instructions given at http://weblogs.asp.net/arturtrosin/archive/2009/04/02/rhino-tools-rhino-security-guide.aspx
it works great for user groups but its has no intructions to implement entity level permissions. i got an other sample instruction according it. i have created a simple Account poco class and created
public class AccountInfromationExtractor : IEntityInformationExtractor<Account>
{ .... }
now when i try to add following permission
permissionsBuilderService
.Allow("/Account/Delete")
.For("Management")
.On<Account>(account)
.Level(20)
.Save();
it gives following error
No component for supporting the service Rhino.Security.Interfaces.IEntityInformationExtractor`1[[RhinoSecurity.Account, RhinoSecurity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] was found
according my limited knowledge, i think i have to register AccountInfromationExtractor with the container but i dont know where n how to do it.
can anyone please help me to resolve this error?