Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0-Alpha1
-
Fix Version/s: 2.0-Alpha2, 2.0.0
-
Component/s: Framework
-
Labels:None
-
Environment:ICEfaces 2.0
Description
Soon after loading the auction demo, it can be seen to squirm briefly and then settle into regular clock updates.
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19678 | Fri Nov 13 10:12:14 MST 2009 | ted.goddard | redirect to index.jsp to establish JSESSIONID ( |
Files Changed | ||||
![]() ![]() ![]() ![]() ![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19679 | Fri Nov 13 10:16:35 MST 2009 | ted.goddard | modified project template for first page redirection ( |
Files Changed | ||||
![]() ![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19681 | Fri Nov 13 10:19:19 MST 2009 | ted.goddard | removed index.html files ( |
Files Changed | ||||
![]() ![]() ![]() |
Field | Original Value | New Value |
---|---|---|
Assignee | Ted Goddard [ ted.goddard ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 2.0-Alpha2 [ 10214 ] | |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19828 | Mon Nov 30 15:45:19 MST 2009 | ted.goddard | rename mobileChat to .xhtml ( |
Files Changed | ||||
![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19829 | Mon Nov 30 15:45:56 MST 2009 | ted.goddard | h:head and h:body tags ( |
Files Changed | ||||
![]() |
Fix Version/s | 2.0.0 [ 10230 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Analysis of the initial update shows it to be due to the DOM update propagating up to the entire form. This is due to initial URL-rewriting prior to JSESSIONID cookie establishment:
<form action="/auction/auction.jsf;jsessionid=F4A4B758C8687B8F6486A4993F8CF058" enctype="application/x-www-form-urlencoded" id="iceForm" method="post" name="iceForm">
changes to
<form action="/auction/auction.jsf" enctype="application/x-www-form-urlencoded" id="iceForm" method="post" name="iceForm">
The easiest way to resolve this is likely to establish the session on the first request. We currently redirect from index.html:
<meta http-equiv="Refresh" content="0;url=auction.jsf">
but redirection from index.jsp should be investigated.