Hi Folks,
Does anyone have any examples of implementing a authentication provider and profile provider in a wcf service?
I have seen the MSDN example for enabling the WCF Authentication service. However, I need to hide this from applications and just allow simple calls to Login/Logout Get/Set profile type methods (mainly because some apps will use AD and some apps will use SQL).
Basically I want to write a login method that performs an authentication against either AD or SQL and then creates and returns an authTicket to the calling forms based web application (which would then create the appropriate authcookie).
On top of this I also want to write a GetProfile method which checks that the request is authenticated before returning a profile object.
I've written a simple application that implements authentiation/roles/profile using a local web.config using local sql database. And I have also written an app that ...
Go to the complete details ...