Hi Experts,
We are trying to set some value in session using Webdynpro, but its getting cleared after sometime. We are setting the Value in one WD application and using it in all other WD application.
The method used to put and get is given below.
Is there any other method which can be used so that the session value stays.
Setting the Value using:
WDScopeUtil.put(WDScopeType.CLIENTSESSION_SCOPE, "APP_NAME", appvalue1);
Getting the Value from session:
WDScopeUtil.get(WDScopeType.CLIENTSESSION_SCOPE, "BP_ID");
Thanks