Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies all the properties of the specified inbound service that are present in the specified dictionary. |
Parameters: |
Inbound service whose properties are to be modified.
Dictionary with the key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an inbound service. |
Return: | None |
Exceptions: |
|
Example: | ...
import BcAdminInboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
is_obj=BcAdminInboundService.getObject("SRV",proxy_obj)
modProps{"desc":"modified"}
BcAdminInboundService.modifyProperties(is_obj,modProps)
...
|