Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the host domain name in ASP .NET without using HttpContext.Current.Request?

Tags:

url

asp.net

dns

I've got an ASP .Net application running on IIS7. I'm using the current url that the site is running under to set some static properties on a class in my application. To do this, I'm getting the domain name using this (insde the class's static constructor):

var host = HttpContext.Current.Request.Url.Host;

And it works fine on my dev machine (windows XP / Cassini). However, when I deploy to IIS7, I get an exception: "Request is not available in this context".

I'm guessing this is because I'm using this code in the static constructor of an object, which is getting executed in IIS before any requests come in; and Cassini doesn't trigger the static constructor until a request happens. Now, I didn't originally like the idea of pulling the domain name from the Request for this very reason, but it was the only place I found it =)

So, does anyone know of another place that I can get the host domain name? I'm assuming that ASP .Net has got to be aware of it at some level independent of HttpRequests, I just don't know how to access it.

like image 875
Badjer Avatar asked Feb 01 '10 23:02

Badjer


1 Answers

The reason that the domain is in the request is...that's what's being asked for. For example these are a few stackexchange sites from http://www.stackexchangesites.com/:

  • http://community.ecoanswers.com
  • http://www.appqanda.com
  • http://www.irosetta.com/

If you ping them, you'll see they all point to the same IP/Web Server and be served by the same app (or multiple apps in this case, but the example holds if it was one big one)...but the application doesn't know which one until a host header comes in with the request asking the server for that site. Each request may be to a different domain...so the application doesn't know it.

If however it doesn't change, you could store it as an appSetting in the web.config.

like image 79
Nick Craver Avatar answered Oct 18 '22 21:10

Nick Craver