Can an IIS 7 module retrieve the server in an OnAuthenticateRequest hook or an OnPostAuthenticateRequest hook?

By "server" I mean the server that the IIS authenticated against (even if it's localhost, for example in the case of windows authentication)

link|improve this question

50% accept rate
feedback

1 Answer

In the method you add as the event delegate, you can do something like:

private void onAuthenticateRequest(object sender, EventArgs e) {
  var application = (HttpApplication) sender;
  HttpContext context = application.Context;

  string address = context.Request.ServerVariables["LOCAL_ADDR"];
}

This will give you IP address of the server currently serving the users request. If you want the servers name, then you could use either SERVER_NAME or HTTP_HOST instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.