Products | Versions |
---|---|
TIBCO ActiveMatrix BusinessWorks | - |
Not Applicable | - |
Resolution:
Description:
=========
In may be desired to change the default values for following RV parameters when BW applications are deployed in FT mode.
Bus.Default.Daemon=tcp\:7500
Bus.Default.Network=
Bus.Default.Service=7500
Resolution:
=========
It does not work to specify different values in the bwengine.tra file as they would be overridden when deploying applications in Admin. One approach is to add the following properties to the file BW_HOME\lib\com\tibco\deployment\bwengine.xml, then rebuild the ear file and redeploy the applications.
Example:
<property>
<name>FT Daemon</name>
<option>Bus.Default.Daemon</option>
<default>tcp:7500</default>
<description>FT RV Daemon parameter</description>
</property>
<property>
<name>FT Service</name>
<option>Bus.Default.Service</option>
<default>7500</default>
<description>FT RV Service parameter</description>
</property>
<property>
<name>FT Network</name>
<option>Bus.Default.Network</option>
<default></default>
<description>FT RV Network parameter</description>
</property>