I am playing with DotNetOpenAuth samples, trying to understand how to properly integrate with OpenID. One of the samples is called OpenIdRelyingPartyMvc. It has two code sections that I am not sure about how they influence functionality.
In Global.asax.cs:
routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = string.Empty }); // Parameter defaults routes.MapRoute( "Root", string.Empty, new { controller = "Home", action = "Index", id = string.Empty });
If I remove last line that maps "Route", nothing seems to be affected: mapping "Default" seems to be sufficient. Why is there a "Route" route?
In HomeController.cs
public class HomeController : Controller { public ActionResult Index() { Response.AppendHeader( "X-XRDS-Location", new Uri(Request.Url, Response.ApplyAppPathModifier("~/Home/xrds")).AbsoluteUri); return View("Index"); } public ActionResult Xrds() { return View("Xrds"); } }
If I remove "AppendHeader" call and test the sample, it still works! I understand that this header is sufficient, I just can't make the sample application depend on it: it works without it's being set up. If I set the breakpoint inside Xrds method, it is never triggered.