Is there a way to get request.request.request.session.attributes as seen in the hierarchy in the image? I have tried the following:
Object value = request.getAttribute("Travis");
and
Object value2 = request.getSession().getAttribute("Travis");
However, both return null. I have confirmed the session Id is correct.
Is there a way to grab values from the request this deep down?
I was able to get the data by using the HazelcastHttpSession. HazelcastHttpSession session.
Object value = session.getOriginalSession().getAttribute("Travis");