I'm currently testing my app by running it on IE11, Chrome and Firefox. Chrome and Firefox can display the value of the cookie.
IE11 displays the cookie name and its value, but failed to display other details like domain, path, expires etc.
My concern here is that after the user logs in successfully, he/she will be able to see the home (private) page but after 15-30 seconds will be kicked to the login page. And I think the problem has something to do with that cookie.
I used Developer tools of IE11 to debug.
My questions are:
- What does it mean if IE11 couldn't display other details of the cookie? What are the possible reasons why IE11 could not display the details?
- Am I right that the app is not behaving properly because of that issue with cookie?
- What else can I do to investigate? Or what probably can fix the
issue?
Please also note that I've tried to open other known application in IE11 (gmail) and it was able to display all the cookie details. I think that implies that the browser is doing well, and that the problem might be on my side.
I recently found an article regarding losing cookie information is it related to my problem?
Please enlighten me, thank you!