掲示板

PortletSession.APPLICATION_SCOPE is being shared with other Users

11年前 に Jawwad Farooq によって更新されました。

PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 35 参加年月日: 12/06/21 最新の投稿
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
11年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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.
11年前 に Jawwad Farooq によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 35 参加年月日: 12/06/21 最新の投稿
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
11年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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?
11年前 に Jawwad Farooq によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 35 参加年月日: 12/06/21 最新の投稿
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
11年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
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
10年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
The worst part is: I am unable to produce the issue on local machine.
thumbnail
10年前 に Juan Gonzalez によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 3089 参加年月日: 08/10/28 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
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
10年前 に Juan Gonzalez によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 3089 参加年月日: 08/10/28 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
I am still facing the issue, when ipc is used...
thumbnail
10年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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
10年前 に Atif Hussain によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Junior Member 投稿: 47 参加年月日: 12/04/03 最新の投稿
Well Neil, We have solved problem using PortletSession for IPC.
thumbnail
10年前 に Neil Griffin によって更新されました。

RE: PortletSession.APPLICATION_SCOPE is being shared with other Users

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
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
9年前 に Kyle Joseph Stiemann によって更新されました。

Thread Split

Liferay Master 投稿: 760 参加年月日: 13/01/14 最新の投稿
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