Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.6.2
-
Fix Version/s: 1.7.1
-
Component/s: Documentation
-
Labels:None
-
Environment:Windows XP Professional
Tomcat 5.5.25
-
Affects:Documentation (User Guide, Ref. Guide, etc.)
Description
A client was having problems with the connection timing out after 30 seconds. After looking at currently documented settings for connection management and Tomcat configuration variables, I searched our code for incidences of 30 or 30000 and found the following in the DOMResponseWriter:
"timeout: " + configuration.getAttributeAsLong("connectionTimeout", 30000) + "," +
I set the following in web.xml and it worked:
<context-param>
<param-name>com.icesoft.faces.connectionTimeout</param-name>
<param-value>180000</param-value>
</context-param>
This should be documented so clients can modify this setting when faced with connection management issues.
"timeout: " + configuration.getAttributeAsLong("connectionTimeout", 30000) + "," +
I set the following in web.xml and it worked:
<context-param>
<param-name>com.icesoft.faces.connectionTimeout</param-name>
<param-value>180000</param-value>
</context-param>
This should be documented so clients can modify this setting when faced with connection management issues.
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
| Field | Original Value | New Value |
|---|---|---|
| Component/s | Documentation [ 10018 ] | |
| Component/s | Framework [ 10013 ] | |
| Fix Version/s | 1.7.1 [ 10122 ] | |
| Affects | [Documentation (User Guide, Ref. Guide, etc.)] | |
| Security | Private [ 10001 ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Fixed [ 1 ] |
| Status | Resolved [ 5 ] | Closed [ 6 ] |