I've developed ASP.NET MVC application. I want to integrate it with YAF (YetAnotherForum.NET) and provide SSO (Single Sign-On) for it.
What I've done is I've created virtual directory for YAF in IIS and simply added a link to YAF from my app. My app uses custom membership provider (derived from .net MembershipProvider class). I've configured YAF to use the same provider. Now it's obvious, when I've logged in to my app, and next click on the link to YAF, I have to log in again.
What is the best practice to provide SSO for such situation ?
Regards