I am currently testing a site with multiple sub domains pointing to the same ASP.NET application, and the routing handles what to do with each request.
For testing, I have added several sub domains to my "hosts file", e.g. "127.0.0.1 admin.TestDomain.com", which is working fine.
However, the problem is that when I call any function in c# to get the host name/domain/url (HttpContext.Current.Request.Url...), the host url always comes back with "localhost", rather than "TestDomain".
Any ideas why this name is being resolved in this manner, and where I can get hold of "TestDomain.com"?
UPDATE Thanks for the interest people. I am using custom routing, didn't mention this because I had no idea that this could effect it. It is an odd application, and all the forms are built in the database and fed out through a single controller (forms controller). Let me know if you'd like any other information.
Here is all the code from the Global.asax:
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : HttpApplication {
public static void RegisterGlobalFilters(GlobalFilterCollection filters) {
filters.Add(new HandleErrorAttribute());
}
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"UtilityRoute",
"Utility/{Action}",
new {controller = "Utility", action = "Index"}
);
routes.MapRoute(
"CommandRoute",
"ExecuteCommand/{CommandFormID}",
new { Controller = "Form", action = "ExecuteCommand" }
);
#region Quicktracks form routes
routes.MapRoute(
"AppHomePage",
"",
new {controller = "Form", action = "AppHomePage"},
new {pageName = new ValidPageRouteConstraint()}
);
routes.MapRoute(
"DirectToForm",
"DirectToForm/{FormID}",
new {Controller = "Form", action = "DirectToForm"},
new {pageName = new ValidPageRouteConstraint()}
);
routes.MapRoute(
"TopPage",
"{pageName}",
new {controller = "Form", action = "AppTopPage"},
new {pageName = new ValidPageRouteConstraint()}
);
routes.MapRoute(
"FirstLevelPage",
"{topPageName}/{pageName}",
new {controller = "Form", action = "AppFirstLevelPage"},
new {pageName = new ValidPageRouteConstraint()}
);
routes.MapRoute(
"SecondLevelPage",
"{topPageName}/{firstPageName}/{pageName}",
new {controller = "Form", action = "AppSecondLevelPage"},
new {pageName = new ValidPageRouteConstraint()}
);
#endregion
routes.MapRoute(
"QuickTracksHomeRoute", // Route name
"", // URL with parameters
new {controller = "Home", action = "Index", id = UrlParameter.Optional} // Parameter defaults
);
routes.MapRoute(
"Apps", // Route name
"Apps/{action}", // URL with parameters
new {controller = "Apps", action = "CreateNewApp", id = UrlParameter.Optional} // Parameter defaults
);
routes.MapRoute(
"AllOtherRoutes", // Route name
"{*url}", // URL with parameters
new {controller = "PageNotFound", action = "Index"} // Parameter defaults
);
}
protected void Application_Start() {
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new CustomViewEngine());
}
//Initialises session object
protected void Session_Start(Object sender, EventArgs e) {
Session["init"] = 0;
}
}
and here is the controller code:
public class FormController : Controller {
private readonly RequestSettings _requestSettings = new RequestSettings();
private readonly FormSelector _formSelector;
private readonly IFormRepository _formRepository;
private readonly IUserRepository _userRepository;
private readonly FormOrchestrator _formOrchestrator;
public FormController() {
_requestSettings.App = new App();
string currentUrl = System.Web.HttpContext.Current.Request.Headers["HOST"];
bool authenticated = System.Web.HttpContext.Current.Request.IsAuthenticated;
_requestSettings.App.Name = AppNameEstablisher.GetCurrentAppName(currentUrl, authenticated);
_requestSettings.FormInChildPanel = CurrentRequest.Parameters.CloseFrameOnSubmit;
_requestSettings.User = null;
if (System.Web.HttpContext.Current.Request.IsAuthenticated) {
string loggedInEmailAddress = System.Web.HttpContext.Current.User.Identity.Name;
_userRepository = new MongoUserRepository();
_requestSettings.User = _userRepository.FindByEmailAddress(loggedInEmailAddress);
}
_requestSettings.Parameters = CurrentRequest.Parameters.QueryStrings;
_formRepository = new MongoFormRepository();
_formSelector = new FormSelector(_requestSettings.App.Name, _requestSettings.User, _formRepository);
_formOrchestrator = new FormOrchestrator(_requestSettings, _formRepository, _userRepository);
}
[HttpGet]
public ActionResult AppHomePage() {
var homePagePath = _formSelector.HomePageFormPath;
if(homePagePath == null) {
return _formOrchestrator.PageNotFound();
}
return Redirect(homePagePath);
}
public ActionResult DirectToForm(string formId) {
return _formOrchestrator.ProcessForm(formId);
}
public ActionResult AppTopPage(string pageName) {
return _formOrchestrator.ProcessForm(_formSelector.GetFormIdFromMenuPath(pageName));
}
public ActionResult AppFirstLevelPage(string topPageName, string pageName) {
return _formOrchestrator.ProcessForm(_formSelector.GetFormIdFromMenuPath(topPageName + "/" + pageName));
}
public ActionResult AppSecondLevelPage(string topPageName, string firstPageName, string pageName) {
return _formOrchestrator.ProcessForm(_formSelector.GetFormIdFromMenuPath(topPageName + "/" + firstPageName + "/" + pageName));
}
public string ExecuteCommand(string commandFormId) {
var commandOrchestrator = new CommandOrchestrator(_requestSettings,_formRepository);
var result = commandOrchestrator.ExecuteCommand(commandFormId);
return "Congratulations, this was a successful action form " + commandFormId;
}
}
