To
update an external platform definition,
use the following sis-console
command, Ant task, or related MBean operation.
See Detecting Failed External Addresses for descriptions of the parameters. |
Console command
updateexternalplatform
Command |
updateexternalplatform <ra-entity> <name> [selectionMode <mode>] [detectInterval <ms>] [detectThreshold <p>] [retryInterval <ms>] [retryAttempts <n>] Update the configuration of an external platform definition |
---|---|
Examples |
To update an external platform definition called $ ./sis-console updateexternalplatform sis VPN-External detectInterval 10000 detectThreshold 0.5 Updated external platform VPN-External To update an external platform definition called $ ./sis-console updateexternalplatform sis IM-SSF retryInterval 60000 Updated external platform IM-SSF |
Ant task
updateexternalplatform
Task |
<updateexternalplatform extPlatformName="..." selectionMode="..." detectInterval="..." detectThreshold="..." retryInterval="..." retryAttempts="..."/> |
---|---|
Examples |
To update the external platform definition <sis-in-management> <updateexternalplatform extPlatformName="VPN-External" detectInterval="10000" retryInterval="20000"/> </sis-in-management> or <sis-sip-management> <updateexternalplatform extPlatformName="VPN-External" detectInterval="10000" retryInterval="20000"/> </sis-sip-management> To update the external platform definition <sis-in-management> <updateexternalplatform extPlatformName="VPN-External" selectionMode="LOAD_SHARE"/> </sis-in-management> or <sis-sip-management> <updateexternalplatform extPlatformName="VPN-External" detectInterval="10000" retryInterval="20000"/> </sis-sip-management> |
MBean operations
MBean |
---|
setPlatformConfig
Operation |
To update the configuration of an external platform definition: public void setPlatformConfig(ExternalPlatformConfig config) throws InvalidArgumentException, ManagementException; |
---|