I have a Notes web page that performs internal authentication and has JS code that sets an auth cookie:
document.cookie = cname + “=” + cvalue + "; " + expires;
This works fine on this page and subsequent pages that will retrieve the cookie for reference. One link on the parent page calls an agent with OpenAgent. The DocumentContext page in the agent does not have HTTP_COOKIE as an item. I’ve read multiple posts on the subject but none on this V8 forum. Some comments were made about caching of the cookie preventing HTTP_COOKIE from being populated, but it’s not an obvious cause here and I’m not sure what the solution might be.
Any obvious explanation for why HTTP_COOKIE is missing in the agent?