Hello
I created a WCF service that used the ASPNetSQLMembershipProvider and the service worked fine. I noticed that users created using the tool provided by MS created a user with password format of hash.
I installed dotnetnuke without the ASPNetSQLMembershipProvider tables and pointed it to my existing ASPNetSQLMembershipProvider tables. This worked fine except that the password format for new users created with dotnetnuke was set to Encrypted.
I then configured my WCF service with the same configuration for the ASPNetSQLMembershipProvider as the config for dotnetnuke. When my service tries to authenticate a user agains a user created in dotnetnuke I get a SecurityException.
I think im missing some sort of config in my service that will allow it to authenticate against a dotnetnuke user. What encryption algorith should I be using for my WCF service?
Does anyone have any ideas?
V