Hello, I have a WCF web service in which I have few .aspx within Host project to listen to status push from external application.
Before the .aspx page process the data push, it needs to authenticate the caller using Active Directory. I already have code for active directory authentication but not sure what is the best place to put that code so that it can be shared by all .aspx pages.
I know that I might use Application_Authenticate even of Global.asax but I think that will affect the WCF service as well which I don't want.
In nutshell, I need to see what is the best place to have AD security code which can be shared by all .aspx page. HTTP Modules?
Go to the complete details ...