Bug 981585

Summary: Session key on remote WSRP portlets not unique
Product: [JBoss] JBoss Enterprise Portal Platform 5 Reporter: Adam Kovari <akovari>
Component: PortalAssignee: Thomas Heute <theute>
Status: CLOSED WONTFIX QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 5.1.1.GACC: epp-bugs, nobody, theute
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of:
: 983898 (view as bug list) Environment:
EPP 5.1.1
Last Closed: 2014-09-26 07:42:12 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 983898    

Description Adam Kovari 2013-07-05 08:05:09 UTC
Description of problem:
We have created a remote portlet (wsrp) which saves a value as session
attribute:

  request.getPortletSession().setAttribute("inputValue", inputValue)

and retrieves it again

  String inputValue = (String)
  request.getPortletSession().getAttribute("inputValue");

The problem is, that if we are placing the portlet twice one the same
page, both portlets are showing the same inputValue. So the
setAttribute() and getAttribute() method is not unique for the portlet
instance.

Version-Release number of selected component (if applicable):
EPP 5.1.1

How reproducible:
Always

Steps to Reproduce:
1. See description

Actual results:
Portlet Session attributes shared accross same portlets on one page

Expected results:
Portlet Session attributes not shared accross same portlets on one page

Additional info: