Asp.Net Third Party Membership Recommendation

I am working on a web application that has strict security and auditing requirements (HIPPA material). Therefore, we evaluate whether we need to create our own custom providers of membership and roles or whether there is a commercially available component that we can buy.

If you have any experience (good or bad) with third-party suppliers and Asp.Net role providers, please share your thoughts.

UPDATE: We started evaluating the following third-party components:

Secure Portal Access : http://www.portsight.com/Products.aspx?AliasPath=Products/Secure Access / Secure Access and CultureAlias ​​= en-US

and Visual Protection: http://www.visual-guard.com/

Does anyone know about any other third party components or have any experience with them?

+5
source share
3 answers

I created my own membership providers and it was a good experience. One was for MySQL, and the other was a dynamic provider that delegates to other providers at runtime. It is very nice to connect these providers to any application and configure them from web.config.

Most of the information I need was found here:

I also implemented a custom MemberhipUser:

.

ASP.NET(ASPNETDB.mdf), VS:

ASP.NET Membership Database Schema

:

ASP.NET

+2

VG .NET, .
, . , .

And now with the new version we plan to implement it for our Java applications. I assume this link shows basic version information for several technologies: http://www.visual-guard.com/EN/user-management-authentication-iam-rbac-access-control-security/identity-role-permission -audit

0
source

All Articles