I have been converting the projects: OpenIdRelyingPartyMvc and OpenIdProviderMvc to be the same code base. I wish to have a website which can provide both of those functions.
The integration parts left on my list are as follows.
Case 1
OpenIdProviderMvc requires the following routes as specified in the global.asax. However, having these routes breaks OpenIdRelyingPartyMvc from displaying the OpenID textbox and login button. Instead it says "This is login's OpenID identity page".
//-- OpenIdProviderMvc requires these, however, it breaks OpenIdRelyingPartyMvc
routes.MapRoute(
"User identities",
"user/{id}/{action}",
new {controller = "User", action = "Identity", id = string.Empty, anon = false});
routes.MapRoute(
"PPID identifiers",
"anon",
new {controller = "User", action = "Identity", id = string.Empty, anon = true});
Case 2
The second difference is the forms authentication in the web.config.
//-- OpenIdRelyingPartyMvc
<forms defaultUrl="~/Home" loginUrl="~/User/Login" name="OpenIdRelyingPartyMvcSession"/>
//-- OpenIdProviderMvc
<forms loginUrl="~/Account/LogOn" timeout="2880" name="ProviderMvcSession"/>
How can I complete the integration given these two remaining case?
Thank you