Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: EE-1.8.2.GA_P03, 2.1-Beta2
-
Fix Version/s: 3.0.RC1, 3.0, EE-1.8.2.GA_P04
-
Component/s: Framework
-
Labels:None
-
Environment:Netscaler load balancer
-
Affects:Documentation (User Guide, Ref. Guide, etc.)
Description
When accessing an application through a Netscaler load balancer, there is a 4-5 second delay which looks to be caused by a call to getRemoteHost. We should provide a configurable mode where getRemoteHost() is not called and a String value for the IP address is used in its place.
Issue Links
- depends on
-
PUSH-150
Add ability to configure getRemoteHost()
-
- Closed
-
Activity
| Field | Original Value | New Value |
|---|---|---|
| Salesforce Case | [5007000000JM3oV] |
| Assignee | Jack van Ooststroom [ jack.van.ooststroom ] |
| Status | Open [ 1 ] | In Progress [ 3 ] |
| Assignee Priority | P1 |
| Fix Version/s | 2.1 [ 10241 ] | |
| Fix Version/s | EE-1.8.2.GA_P04 [ 10280 ] |
| Status | In Progress [ 3 ] | Resolved [ 5 ] |
| Affects | [Documentation (User Guide, Ref. Guide, etc.)] | |
| Resolution | Fixed [ 1 ] |
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #26359 | Tue Nov 15 08:36:27 MST 2011 | jack.van.ooststroom | Fixed JIRA |
| Files Changed | ||||
MODIFY
/icefaces/trunk/icefaces/push-server/src/org/icefaces/push/server/PushServlet.java
MODIFY
/icefaces/trunk/icefaces/push-server/src/org/icefaces/push/server/SessionBoundServlet.java
|
| Fix Version/s | 3.0.RC1 [ 10300 ] |
| Status | Resolved [ 5 ] | Closed [ 6 ] |
| Resolution | Fixed [ 1 ] | |
| Status | Closed [ 6 ] | Reopened [ 4 ] |
| Assignee Priority | P1 |
| Issue Type | New Feature [ 2 ] | Improvement [ 4 ] |
| Status | Reopened [ 4 ] | Closed [ 6 ] |
| Resolution | Fixed [ 1 ] |

To avoid the getRemoteHost() calls to be executed the newly introduced disableRemoteHostLookup context parameter can be used as follows depending on the ICEfaces version.
ICEfaces 1.8:
<context-param>
<param-name>com.icesoft.faces.disableRemoteHostLookup</param-name>
<param-value>true</param-value>
</context-param>
ICEfaces 2:
<context-param>
<param-name>org.icepush.disableRemoteHostLookup</param-name>
<param-value>true</param-value>
</context-param>
Marking this one as FIXED.