
Hi @가영 김
I think there's some problem with your sites.xml file. It looks like you're using Enterprise Mode Site List Manager (schema v.1) to create the site list file. From this doc and this doc, you can find that Enterprise Mode schema v.1 isn't supported for IE mode integration and only applies to Windows 8.1 and Windows 7. You need to upgrade to schema v.2. The Enterprise Mode v.2 XML schema example is like this.
I don't know the cookies you need to share are domain cookies or host cookies. You can determine that according to this:
A cookie is a domain cookie if a domain was specified in the cookie string (via HTTP Set-Cookie response header or document.cookie JS API). A domain cookie applies to the specified domain and all subdomains. If a domain was not specified in the cookie string, the cookie is a host-only cookie and only applies to the specific host that it was set for.
I assume that the cookies you use are host cookies, the sample sites.xml file should be like the following (you can change it according to your demand):
<site-list version="1">
<created-by>
<tool>EnterpriseSitelistManager</tool>
<version>12.0.0.0</version>
<date-created>06/15/2021 06:30:21</date-created>
</created-by>
<site url="test.co.kr">
<compat-mode>Default</compat-mode>
<open-in>IE11</open-in>
</site>
<site url="site-name.site.co.kr">
<compat-mode>Default</compat-mode>
<open-in>IE11</open-in>
</site>
<site url="site-namei.site.co.kr">
<compat-mode>Default</compat-mode>
<open-in>IE11</open-in>
</site>
<shared-cookie host="test.co.kr" name="cookie1"></shared-cookie>
<shared-cookie host="test.co.kr" name="cookie2"></shared-cookie>
<shared-cookie host="site-namei.site.co.kr" name="cookie3"></shared-cookie>
<shared-cookie host="site-name.site.co.kr" name="cookie3"></shared-cookie>
</site-list>
Besides, please make sure you have configured IE mode policies correctly according to the steps in this doc. And please notice that session cookies can only be shared from Microsoft Edge to Internet Explorer. Sharing session cookies in reverse (from Internet Explorer to Microsoft Edge) isn't possible.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Regards,
Yu Zhou