Details
-
Type:
New Feature
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.2-EE-GA_P02
-
Fix Version/s: EE-1.8.2.GA_P03
-
Component/s: Framework
-
Labels:None
-
Environment:-
-
Affects:Documentation (User Guide, Ref. Guide, etc.), Compatibility/Configuration
Description
The user has a scalability concern and would like to optimize portal application load performance by removing the hidden blank iframe that is used to support back/forward browser history. For example, if 30000 users at 3000 different locations open a page with 10 ICEfaces portlets, the addition of 300,000 potentially unneeded iframes may degrade performance. Removing this iframe should not affect portlet functionality since navigation is not as expected in a portal environment.
Activity
Field | Original Value | New Value |
---|---|---|
Salesforce Case | [5007000000F7jdu] |
Description |
The user has a scalability concern and would like to optimize portal application load performance by removing the hidden iframe that is used to support back/forward browser history. For example, if 30000 users at 3000 different locations open a page with 10 ICEfaces portlets, the addition of 300,000 potentially unneeded iframes may degrade performance. Removing this iframe should not affect portlet functionality since navigation is not as expected in a portal environment. |
The user has a scalability concern and would like to optimize portal application load performance by removing the hidden blank iframe that is used to support back/forward browser history. For example, if 30000 users at 3000 different locations open a page with 10 ICEfaces portlets, the addition of 300,000 potentially unneeded iframes may degrade performance. Removing this iframe should not affect portlet functionality since navigation is not as expected in a portal environment. |
Fix Version/s | 1.8.2-EE-GA_P03 [ 10251 ] |
Affects | [Documentation (User Guide, Ref. Guide, etc.), Compatibility/Configuration] | |
Assignee Priority | P2 | |
Assignee | Mircea Toma [ mircea.toma ] |
Assignee Priority | P2 | P1 |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #24216 | Tue Mar 22 12:55:17 MDT 2011 | mircea.toma | |
Files Changed | ||||
![]() ![]() ![]() ![]() ![]() |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #24233 | Wed Mar 23 18:28:51 MDT 2011 | mircea.toma | |
Files Changed | ||||
![]() ![]() |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #24622 | Thu May 19 06:10:14 MDT 2011 | mircea.toma | |
Files Changed | ||||
![]() |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Assignee Priority | P1 |
Changed core and component code generating iframes dynamically to use pseudo URLs, this actually simplified alos the code since the URLs don't have to be resolved anymore.
Introduced 'com.icesoft.faces.disableBrowserHistoryTracking' parameter to allow the disabling of back button detection, this also avoids having the history iframe from requesting pages from the server.
To avoid having the history iframe pointing '.....xmlhttp/blank' URL the following context parameter needs to be added to web.xml file:
<context-param>
<param-name>com.icesoft.faces.disableBrowserHistoryTracking</param-name>
<param-value>true</param-value>
</context-param>