[jboss-jira] [JBoss JIRA] Created: (JBMESSAGING-1845) Remoting configuration parameter adjustment
Yong Hao Gao (JIRA)
jira-events at lists.jboss.org
Wed Jan 26 02:27:49 EST 2011
Remoting configuration parameter adjustment
-------------------------------------------
Key: JBMESSAGING-1845
URL: https://issues.jboss.org/browse/JBMESSAGING-1845
Project: JBoss Messaging
Issue Type: Task
Components: JMS Remoting
Affects Versions: 1.4.7.GA, 1.4.0.SP3.CP11
Reporter: Yong Hao Gao
Assignee: Yong Hao Gao
Fix For: 1.4.0.SP3.CP12, 1.4.8.GA
Current remoting config has the following commented:
<!-- the following parameters are useful when there is a firewall between client and server. Uncomment them if so.-->
<!--
<attribute name="numberOfCallRetries" isParam="true">5</attribute>
<attribute name="pingFrequency" isParam="true">30000</attribute>
<attribute name="pingWindowFactor" isParam="true">71582</attribute>
<attribute name="generalizeSocketException" isParam="true">true</attribute>
-->
So defaults for those params will be used, and will turn off pinging on control connection, which would be useful to keep the control connection alive in case of a firewall. So we should uncomment it as the following
<!-- the following parameters are useful when there is a firewall between client and server. Adjust the values to suit your environment.-->
<attribute name="numberOfCallRetries" isParam="true">5</attribute>
<attribute name="pingFrequency" isParam="true">30000</attribute>
<attribute name="pingWindowFactor" isParam="true">71582</attribute>
<attribute name="generalizeSocketException" isParam="true">true</attribute>
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list