cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Retrieve HTTP Session attribute value

0 Likes
488

Hi,

Using Web Dynpro for Java, how can I retrieve from Http Session one attribute setup by a standard Java app?

The value was setup like this:

IPortalComponentSession compSession = request.getComponentSession();

//where IPortalComponentRequest request

javax.servlet.http.HttpSession thisHttpSession = null;

thisHttpSession = compSession.getHttpSession();

thisHttpSession.setAttribute("myvalue","test");

View Entire Topic
Former Member
0 Likes

Hi

Were u able to retrieve the value as I have a similar requirement and I am unable to get the parameter value using protocoladapter.

Thanks