Thanks for the reply.
We are starting on it with a new approach using shared portlet session.
PortletSession psession=actionRequest.getPortletSession();
String val="True";
psession.setAttribute( "LIFERAY_SHARED_mySpecialVar", val,PortletSession.APPLICATION_SCOPE);
we could set a value inside a variable and put it in session from portlet A and read the value from portlet B and make the sahred variable as "false".
But, on deploying them on the same portal page.
Portlet B's doview() is called first and it cant find any value in the session.
Then , PortletA's doview() is called.
Can you suggest me how to handle this situation.
Por favor, faça login para denunciar.