Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies all the properties of the specified outbound service that is present in the specified dictionary. |
Parameters: |
Outbound service whose properties are to be modified.
Dictionary with key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an outbound service. |
Return: | None |
Exceptions: |
|
Example: | ...
import BcAdminOutboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
os_obj=BcAdminOutboundService.getObject("OSRV",proxy_obj)
modProps={"reply-timer.sec": "180"}
BcAdminOutboundService.modifyProperties(os_obj,modProps)
...
|