I have a solution with 2 projects. In the first project a I have a website with a Logon Control. In the second project I have a WCF project with an AuthenticatonService configured. What is the easiest way to integrate both? In other word, How do I call the Authentication Service from the login control?
EDIT:
OK, what I mean is that by default, you can set the MembershipProvider property in a login control for authentication. This property refers to a locally defined provider in machine.config or web.config.
what I want is to stop using that provider defined locally and call the remote WCF authentication service instead. Sorry for not making myself clear.