cancel
Showing results for 
Search instead for 
Did you mean: 

Session Id

Former Member
0 Kudos

Hi,

Is it possible to capture the session(session id or dete/time stamp) of the Portal from a Webynpro component?

Thanks

Anjana

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member182374
Active Contributor
0 Kudos

Hi Anjana Reddy,

On NW2004 it was possible to get the HttpSession by using this code:

HttpServletRequest request = ((IWebContextAdapter) WDWebContextAdapter.getWebContextAdapter()).getHttpServletRequest();
HttpSession session = request.getSession();

Regards,

Omri