Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried setting a cookie with Expiration data and accessing the same.

But it is not showing the actual expiration date I set, instead it shows 01/01/0001. Please see the comment in the below code. What could be the issue?

Here is my code. This code is written a custom attribute in order to authorize the user.

When i debug i actually set cookie expiration based on my session expire time.

I use windows authentication combined with SQL Server data.

public class AuthorizeMyAPP : AuthorizeAttribute
{
    protected override bool AuthorizeCore(HttpContextBase httpContext)
    {
        var isAuthorized = base.AuthorizeCore(httpContext);
        if (!isAuthorized)
        {
            return false;
        }

        if (isAuthorized)
        {
            var user = httpContext.User;

            var authCookie = httpContext.Request.Cookies["MyAPPAuth"];

            if (authCookie != null)
            {
        // HERE IS THE ISSUE authCookie.ExpirationDate is 01/01/0001
                var authTicket = FormsAuthentication.Decrypt(authCookie.Value);
                var identity = new GenericIdentity(authTicket.Name, "Windows");
                var principal = new GenericPrincipal(identity, new string[] { });
                httpContext.User = principal;
            }
            else
            {
                var AdminService = (IAdminService)DependencyResolver.Current.GetService(typeof(IAdminService));
                string userId = "firstname.lastname";//user.Identity.Name.Split('\\')[1]
                User appUser = AdminService.SelectUserByID(userId);
                httpContext.Session["LoggedInUser"] = appUser;
                var authTicket = new FormsAuthenticationTicket(1, userId, DateTime.Now,
                                                   DateTime.Now.AddMinutes(httpContext.Session.Timeout), true,
                                                   appUser.RoleSK + "___" + string.Join(",", appUser.Role.RoleName)
                                                   );

                string cookieContents = FormsAuthentication.Encrypt(authTicket);
                var cookie = new HttpCookie("MyAPPAuth", cookieContents)
                {
                    Expires = DateTime.Now.AddMinutes(httpContext.Session.Timeout),
                    Path = FormsAuthentication.FormsCookiePath
                };

                httpContext.Response.Cookies.Add(cookie);
 // HERE i can see the cookie Expiration time 20 mins from Cutrrent Time
                return true;
            }
        }


        return isAuthorized;
    }

    protected override void HandleUnauthorizedRequest(AuthorizationContext filterContext)
    {

        filterContext.Result = new RedirectResult("/Error/AccessDenied/");

    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.