Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Global ASAX - get the server name

Can anybody tell me if there is a way for me to get the domain name of my site in the Application_Start event in the global.asax?

Normally I'd just get it from Context.Request.ServerVariables["SERVER_NAME"], but this is not available. I'd ideally also like to get the URL from the request that kicked off the application.


Hmm - from answers below, it would seem that being on IIS7 makes a difference here. This is new and there are now design guidelines to try and stop you from doing it:

IIS Blog

like image 429
Paddy Avatar asked Nov 24 '09 14:11

Paddy


3 Answers

You can access the Context through the static HttpContext.Current member.

HttpContext.Current.Request.ServerVariables["SERVER_NAME"];
HttpContext.Current.Request.Url;

Edit, Based on some of your comments I did some additional research

This error is due to a design change in the IIS7 Integrated pipeline that makes the request context unavailable in Application_Start event. When using the Classic mode (the only mode when running on previous versions of IIS), the request context used to be available, even though the Application_Start event has always been intended as a global and request-agnostic event in the application lifetime. Despite this, because ASP.NET applications were always started by the first request to the app, it used to be possible to get to the request context through the static HttpContext.Current field.

So you have two options

  1. Change your application code to not use the request context (recommended).
  2. Move the application to Classic mode (NOT recommended).

http://mvolo.com/iis7-integrated-mode-request-is-not-available-in-this-context-exception-in-applicationstart/

like image 82
Bob Avatar answered Nov 16 '22 22:11

Bob


Your web-application could run under multiple different domains. Since there is no current request in the Application_Start event, you cannot know under which domain the application will be called.

You could however find out the machine-name using System.Environment.MachineName.

like image 21
Vinz Avatar answered Nov 16 '22 20:11

Vinz


I'm guessing you are on IIS 7? Because the HttpContext is available there on IIS 6.0.

Can you consider filling that information later on? The first call to Application_BeginRequest for example?

like image 5
Luk Avatar answered Nov 16 '22 21:11

Luk