Safari 3Rd Party Cookie Iframe Trick No Longer Working

Does the technique for setting third-party cookies in iframes in Safari still work?

See this thread: Safari 3rd party cookie iframe trick no longer working?

Safari has enforced its cookie policy with 5.1.4.

IFrame with safari no longer support 3rd party cookies

As solution we have done some changes to web. config

 <sessionState timeout="70" cookieless="AutoDetect" />

The possible values for "cookieless" attribute are:

AutoDetect : Session uses background cookie if cookies are enabled. If cookies are disabled, then the URL is used to store session information.

UseCookie: Session always use background cookie. This is default.

UseDeviceProfile: Session uses background cookie if browser supports cookies else URL is used.

UseUri: Session always use URL.

And added :

 <authentication mode="Forms">
<forms loginUrl="Login.aspx" cookieless="AutoDetect" timeout="2880" name=".ASPXAUTH" slidingExpiration="true" />
</authentication>


Related Topics



Leave a reply



Submit