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-management>
    <updateexternalplatform extPlatformName="VPN-External" detectInterval="10000" retryInterval="20000"/>
</sis-management>
To update the external platform definition  <sis-management>
    <updateexternalplatform extPlatformName="VPN-External" selectionMode="LOAD_SHARE"/>
</sis-management>
 | 
MBean operations
MBean  | 
|---|
setPlatformConfig
Operation  | 
To update the configuration of an external platform definition: public void setPlatformConfig(ExternalPlatformConfig config)
    throws InvalidArgumentException, ManagementException;
 | 
|---|
