Hello guys:
I’ve a portlet which is called with parameters, this porlet set some attributes for the session:
javax.servlet.http.HttpServletRequest request = (javax.servlet.http.HttpServletRequest)com.webMethods.portal.framework.impl.PortalServlet.getCurrentRequest();
HttpSession reqsession = request.getSession(true);
reqsession.setAttribute(“someAttribute”, attribValue);
Later in this same porlet I make a redirect to another porlet where I get this attribute normally:
myValue = (String) reqsession.getAttribute(“someAttribute”);
But when I choose another portlet from the left navigation panel the attribute seems to be lost because when I use getAttribute it return null.
Best regards
#webMethods-BPMS#MWS-CAF-Task-Engine#webMethods