Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户登录时,我们在 Open SSO 应用程序中设置了一个会话变量。我需要从 ColdFusion 应用程序访问这个变量。有什么办法吗?我试过 GetPageContext().getSession() 但它似乎不起作用。
找到了解决方案!事实证明,该值不在会话中,而是在请求标头中。
GetHTTPRequestData().headers['sessionvariablename']
为我工作。