Persistent cookies in WPF WebBrowser control?

前端 未结 2 998
情书的邮戳
情书的邮戳 2021-01-13 20:23

I\'m using the WPF WebBrowser to display online help inside an app (just a few small web pages). Some of those pages use cookies to display items only for the first few tim

相关标签:
2条回答
  • 2021-01-13 21:02

    Cookies handling in Internet Explorer (or hosted versions) is tied to the IE's own notion of "URL Security Zones", doc here: About URL security Zones

    So, IE determines an url zone using various alogorithms applied to the url. Depending on the zone, your hosted browser may or may not support session or persistent cookies.

    Strangely, when I create a small WPF sample, add the web browser to it and have navigate to this persistent cookie tester utiliy page: http://www.rbaworld.com/Security/Computers/Cookies/givecook.shtml, it works fine. Each time I launch the sample app, the counter is incremented fine, so not everyone can reproduce your problem. Well, that's the whole purpose of URL Security zones: it can vary by machine, by user, by Windows policy, etc...

    The next question is: Can I change the zone you're running in? The short and easy answer is ... no because it's heavily tied to the security.

    If you were hosting IE yourself, you could implement your own security zone handle as described here: Implementing a Custom Security Manager and a sample here: SAMPLE: Secumgr.exe Overrides Security Manager for WebBrowser Host but you're relying on WPF's webbrowser that does not allow any override... You can get to Reflector and copy all WPF private/internal code but that's a log of risky work!

    The last thing you can try is to manipulate the standard Internet Security Manager. Here is some sample code that gives some hints. At least you should be able to determine the zone you're running in (MapUrltoZone) and change the cookie (TryAllowCookie). The problem with the standard manager is most of the times, it pops up dialog to the end-user allowing authorization... (security again!):

    [ComImport, Guid("7b8a2d94-0ac9-11d1-896c-00c04Fb6bfc4")]
    private class InternetSecurityManager
    {
    }
    
    [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("79eac9ee-baf9-11ce-8c82-00aa004ba90b")]
    private interface IInternetSecurityManager
    {
        void Unused1();
        void Unused2();
        [PreserveSig]
        int MapUrlToZone([In, MarshalAs(UnmanagedType.BStr)] string pwszUrl, out int pdwZone, [In] int dwFlags);
        void Unused3();
        [PreserveSig]
        int ProcessUrlAction(string pwszUrl, int dwAction, ref int pPolicy, int cbPolicy, ref Guid pContext, int cbContext, int dwFlags, int dwReserved);
        // left undefined
    }
    
    public static SecurityZone MapUrlToZone(Uri uri)
    {
        IInternetSecurityManager securityManager = (IInternetSecurityManager)new InternetSecurityManager();
        int zoneId;
        if (securityManager.MapUrlToZone(uri.ToString(), out zoneId, 0) < 0)
            return SecurityZone.NoZone;
    
        return (SecurityZone)zoneId;
    }
    
    private const int URLACTION_COOKIES = 0x00001A02;
    private const int URLACTION_COOKIES_ENABLED = 0x00001A10;
    private const int URLPOLICY_ALLOW = 0x00;
    private const int URLPOLICY_DISALLOW = 0x03;
    private const int PUAF_DEFAULT = 0x00000000;
    
    public static bool TryAllowCookies(Uri uri)
    {
        IInternetSecurityManager securityManager = (IInternetSecurityManager)new InternetSecurityManager();
        int policy = 0;
        Guid context = Guid.Empty;
        int hr = securityManager.ProcessUrlAction(uri.ToString(), URLACTION_COOKIES_ENABLED, ref policy, Marshal.SizeOf(policy), ref context, Marshal.SizeOf(context), PUAF_DEFAULT, 0);
        return (hr == 0) && policy == URLPOLICY_ALLOW;
    }
    

    Good luck :)

    0 讨论(0)
  • 2021-01-13 21:05

    The WebBrowser control won't allow this by default. For security reasons, you probably wouldn't want different applications from different developers/companies being able to access cookie info that another app created.

    However, check out this answer How to delete Cookies from windows.form?

    That pertains to deleting cookies through javascript, but you may be able to use a similar method in order to persist and create the site cookie each time the application is loaded.

    0 讨论(0)
提交回复
热议问题