Global.asax和继承

时间:2013-01-31 15:52:07

标签: c# asp.net

我有一个父应用和一个子应用。目前有两个单独的Global.asax文件。我正在尝试让这个子应用程序从父应用程序的Global.asax文件继承。

所以我的App_Code文件夹中有一个文件,其中的所有代码如下:

namespace NsGlobalAsax
{
    public class GlobalAsax : System.Web.HttpApplication
    {
        public GlobalAsax()
        {
            //
            // TODO: Add constructor logic here
            //
        }



        void Session_Start(object sender, EventArgs e)
        {
            // add some data to the Session so permanent SessionId is assigned
            // otherwise new SessionId is assigned to the user until some data
            // is actually written to Session
            Session["Start"] = DateTime.Now;

            // get current context
            HttpContext currentContext = HttpContext.Current;

            if (currentContext != null)
            {
                if (!OnlineVisitorsUtility.Visitors.ContainsKey(currentContext.Session.SessionID))
                    OnlineVisitorsUtility.Visitors.Add(currentContext.Session.SessionID, new WebsiteVisitor(currentContext));
            }

        }

        void Session_End(object sender, EventArgs e)
        {
            // Code that runs when a session ends. 
            // Note: The Session_End event is raised only when the sessionstate mode
            // is set to InProc in the Web.config file. If session mode is set to StateServer 
            // or SQLServer, the event is not raised.

            if (this.Session != null)
                OnlineVisitorsUtility.Visitors.Remove(this.Session.SessionID);
        }



        public void Application_AuthenticateRequest(Object sender, EventArgs e)
        {
            String cookieName = FormsAuthentication.FormsCookieName;
            HttpCookie authCookie = Context.Request.Cookies[cookieName];

            if (null == authCookie)
            {//There is no authentication cookie.
                return;
            }

            FormsAuthenticationTicket authTicket = null;

            try
            {
                authTicket = FormsAuthentication.Decrypt(authCookie.Value);
            }
            catch (Exception ex)
            {
                //Write the exception to the Event Log.
                return;
            }

            if (null == authTicket)
            {//Cookie failed to decrypt.
                return;
            }

            //When the ticket was created, the UserData property was assigned a
            //pipe-delimited string of group names.
            String[] groups = authTicket.UserData.Split(new char[] { '|' });

            //Create an Identity.
            GenericIdentity id = new GenericIdentity(authTicket.Name, "LdapAuthentication");

            //This principal flows throughout the request.
            GenericPrincipal principal = new GenericPrincipal(id, groups);

            Context.User = principal;

        }
    }

}

现在我有我的父Global.asax文件,如下所示:

<%@ Application Language="C#" CodeBehind="Global.asax.cs" src="Global.asax.cs"  Inherits="RootAsax.BaseGlobal"    %>

这是代码隐藏文件:

namespace RootAsax
{
    public class BaseGlobal : NsGlobalAsax.GlobalAsax
    {}
}

现在这里是我的子应用程序Global.asax文件:

<%@ Application Codebehind="Global.asax.cs" Inherits="FormsAuthAd.Global" Language="C#" %>

这是代码隐藏文件:

namespace FormsAuthAd
{
    public class Global : NsGlobalAsax.GlobalAsax
    {
    }
}

codebehindfiles中的两个类都继承自App_Code文件夹中的源,但是,身份验证状态不会从一个应用程序传递到另一个应用程序。例如,如果我在父应用程序上登录,则身份验证不会转移到子应用程序。反之亦然。

我希望我能给你们足够的细节。

谢谢!

编辑:

海因兹在评论中指出,这不是继承问题。我需要弄清楚如何让子应用使用父母的Global.asax文件。如果我删除子应用程序的Global.asax文件身份验证对子应用程序根本不起作用。有任何想法吗?

2 个答案:

答案 0 :(得分:0)

这不是与继承相关的问题。

如果您要对不同网站中的用户进行身份验证,则应实施单点登录策略http://en.wikipedia.org/wiki/Single_sign-on

有很多例子和方法可以做到这一点。这很复杂。

答案 1 :(得分:0)

  

我认为每个应用程序都有自己的Session和State ..不可能通过   Application对象。一种方法是通过应用程序完成   持久化数据库和其他应用程序读取   来自公共共享数据库的数据并弄清楚如何制作   感觉。