Good afternoon, I'm trying to recover an instantiated object from a servlet in the HttpSession object.
When I try to recover from the JSP, I get the object smoothly. However when I try to retrieve this data from another Servlet, not me gets the object, It returns me NULL directly, although the session ID is the same.
Here's the code where I instantiate the object to pass:
request.getSession(true);
request.getSession().setAttribute("object1", object1);
This is the code that attempt to retrieve the object.
req.getSession().getAttribute("object1");
Can you think of anything?
Thanks and regards.
In jspkeep the data in session like this way
session.setAttribute("object1", object1);
and retrieve in servlet like this way