Details
-
Type: Bug
-
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:ICEfaces
Description
Currently encodeActionURL is a pass-through in the Servlet case:
public String encodeActionURL(String url) {
return url;
}
This does not give the opportunity for Response wrappers to add functionality.
public String encodeActionURL(String url) {
return url;
}
This does not give the opportunity for Response wrappers to add functionality.
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #24604 | Tue May 17 10:59:40 MDT 2011 | ted.goddard | call response.encodeURL ( |
Files Changed | ||||
MODIFY
/icefaces/trunk/icefaces/core/src/com/icesoft/faces/webapp/http/servlet/ServletExternalContext.java
|
Ted Goddard
created issue -
Ted Goddard
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Ted Goddard [ ted.goddard ] |
Ted Goddard
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Judy Guglielmin
made changes -
Attachment | ice-blog.zip [ 13242 ] |
Tyler Johnson
made changes -
Salesforce Case | [5007000000GtkkB] |
Ken Fyten
made changes -
Affects | [Compatibility/Configuration] |
Ted Goddard
made changes -
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Ken Fyten
made changes -
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Affects | [Compatibility/Configuration] | |
Resolution | Fixed [ 1 ] |
Ted Goddard
made changes -
Attachment | FailSafeResponseFilter.java [ 13285 ] |
Ted Goddard
made changes -
Attachment | FailSafeResponseFilter.java [ 13290 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #24781 | Wed Jun 08 15:28:17 MDT 2011 | ted.goddard | Filter for insulating against stale requests/responses ( |
Files Changed | ||||
ADD
/icefaces/trunk/icefaces/core/src/com/icesoft/faces/webapp/http/servlet/FailSafeResponseFilter.java
|
Ken Fyten
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
This could have side-effects for anything that uses action URLs, such as command
links and forms. From the documentation, of HttpServletResponse, it looks like
this code change should have no effect under most cases. However, the jsessionid
may be encoded into the URL, so that could affect applications where the
first page visited is an ICEfaces page prior to a session being established.