We are converting our existing winform application developed in .Net 1.1 to .Net 3.5. In this effort we are migrating from COM+ to WCF.
In COM+ app we are managing user credentials in database table and using custom authentication process to authenticate clients.
How can I setup WCF security configuration to use credentials from existing database? I want to setup an security control such that only users available in USER database table can consume WCF services and no other user has access to WCF Services.
I am using NetTcpBindings.
Also please let me know if there are any samples/articles available for such scenario.