Forums de discussion

PortletSession.APPLICATION_SCOPE is being shared with other Users

Jawwad Farooq, modifié il y a 11 années.

PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 35 Date d'inscription: 21/06/12 Publications récentes
I am setting an attribute in Session using the following code:

Object objSession = FacesContext.getCurrentInstance().getExternalContext().getSession(true);
		try
	      {
	         if (objSession instanceof PortletSession)
	         {
	            PortletSession portalSession = (PortletSession)objSession;	           
	            portalSession.setAttribute("test", "Transactions Clicked", PortletSession.APPLICATION_SCOPE);
	         }
	      }
	      catch( Exception e )
	      {
	    	  e.printStackTrace();
	      }


And getting this on JSP using
<h:outputtext value="#{httpSessionScope['test']}" />


But the problem is, it is working fine for the first user how logged in to the application. All the subsequent user how logged in gets a readonly instance of first user session. They cant change the value of this attribute but gets the current value of this.

I am using JSF 1.2, with JBoss Portlet Bridge

Please help as it is too much weird to me...........
thumbnail
Neil Griffin, modifié il y a 11 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
PortletSession.APPLICATION_SCOPE is designed for sharing data between different portlets that reside in the same WAR. It is basically a layer of abstraction on top of HttpSession, so the data for user1 should not be visible to user2, since each user has the same session.

Do you want the users to be able to share data? If so, then you would need to keep that in application scope, and be careful to make it thread-safe.
Jawwad Farooq, modifié il y a 11 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 35 Date d'inscription: 21/06/12 Publications récentes
Neil Griffin:
PortletSession.APPLICATION_SCOPE is designed for sharing data between different portlets that reside in the same WAR. It is basically a layer of abstraction on top of HttpSession, so the data for user1 should not be visible to user2, since each user has the same session.

Do you want the users to be able to share data? If so, then you would need to keep that in application scope, and be careful to make it thread-safe.


Thanks for commenting....

I want to share between different portlets of same and different WAR but the data should be user specific. This means each user of the application maintains his own session that will be available among different portlets of different WARs.
thumbnail
Neil Griffin, modifié il y a 11 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
All the subsequent user how logged in gets a readonly instance of first user session. They cant change the value of this attribute but gets the current value of this


Just to make sure that I understand, you don't want a readonly instance of the first user session right? Instead, you would like each user to have his own session, right?
Jawwad Farooq, modifié il y a 11 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 35 Date d'inscription: 21/06/12 Publications récentes
Neil Griffin:
All the subsequent user how logged in gets a readonly instance of first user session. They cant change the value of this attribute but gets the current value of this


Just to make sure that I understand, you don't want a readonly instance of the first user session right? Instead, you would like each user to have his own session, right?


Right Neil, you fully grasp what I want to do emoticon..

Thanks...
thumbnail
Neil Griffin, modifié il y a 11 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
It looks like you are doing everything correctly. The "#{httpSessionScope['test']}" EL-expression should be working. Also the session scoping should be working on a per-user basis like you want. Do you have the opportunity to upgrade to JSF 2 and Liferay Faces Bridge? It should be working there.

One thing you can try for now, is to create a managed-bean that does something like this:

public class MyManagedBean {

    public String getTest() {
        
        FacesContext facesContext = FacesContext.getCurrentInstance();
        PortletSession portletSession = facesContext.getExternalContext().getSession(true);
        return portletSession.getAttribute("test", PortletSession.APPLICATION_SCOPE);
    }
}


And then access it via EL like this:

<h:outputtext value="#{myManagedBean.test}&quot;" />
thumbnail
Atif Hussain, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
Hi Neil,
this just issue just produced a moment ago in our system, the system is in production, we are unable to solve it, even no work around is possible.
session.application_scope is sharing data of one user with other users.
thumbnail
Neil Griffin, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
What version of Liferay Portal are you using in production? Also what application server and version are you using?

Since PortletSession is built on top of the HttpSession, it should not be shared with other users.
thumbnail
Atif Hussain, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
liferay-portal-6.1.1-ce-ga2 with bundled tomcat-7.0.27. The portlets where the problem is coming are also communicate with each other through IPC. The managed bean is in session scope for both of these portlets. (I load data on preRenderView).
thumbnail
Atif Hussain, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
The worst part is: I am unable to produce the issue on local machine.
thumbnail
Juan Gonzalez, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 3089 Date d'inscription: 28/10/08 Publications récentes
Atif Hussain:
Hi Neil,
this just issue just produced a moment ago in our system, the system is in production, we are unable to solve it, even no work around is possible.
session.application_scope is sharing data of one user with other users.


So you said it was working before? Do you use any kind of cache/web server for pages between Liferay and clients?
thumbnail
Atif Hussain, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
Juan Gonzalez:
Atif Hussain:
Hi Neil,
this just issue just produced a moment ago in our system, the system is in production, we are unable to solve it, even no work around is possible.
session.application_scope is sharing data of one user with other users.


So you said it was working before? Do you use any kind of cache/web server for pages between Liferay and clients?



No, but system is clustered, consists of two VMs (one is off at the moment). So I guess session replication is causing problems.
thumbnail
Juan Gonzalez, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 3089 Date d'inscription: 28/10/08 Publications récentes
Hi Atif,

I would then check if it's working with Liferay Faces (which is the best environment we can help you out). You can use Liferay Faces 2.1.x version to fit your Liferay Environment.

Anyway, it would be great if you can provide us a portlet sample to reproduce the issue (better with sources so we can modify).
thumbnail
Atif Hussain, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
I am still facing the issue, when ipc is used...
thumbnail
Neil Griffin, modifié il y a 10 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
Hi Atif,

If you attach a test portlet and a set of steps that we can use to reproduce the problem in a development environment, then we'd be happy to try and help.

Kind Regards,

Neil
thumbnail
Atif Hussain, modifié il y a 9 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member Publications: 47 Date d'inscription: 03/04/12 Publications récentes
Well Neil, We have solved problem using PortletSession for IPC.
thumbnail
Neil Griffin, modifié il y a 9 années.

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
I'm glad to hear that good news. emoticon If you have time, I would be interested to know more details about how you solved the problem.
thumbnail
Kyle Joseph Stiemann, modifié il y a 9 années.

Thread Split

Liferay Master Publications: 760 Date d'inscription: 14/01/13 Publications récentes
Please start a new thread when asking a new question.

The new thread can be found at https://www.liferay.com/community/forums/-/message_boards/view_message/41970018.

- Kyle