Loading...
Select Version
Function: |
Reads all the properties of the specified outbound service and returns a dictionary with key-value pairs for the properties. |
Parameters: |
Outbound service whose properties are to be read. |
Return: | Dictionary with key-value pairs for the properties of the outbound service. You can find the possible values for key in Properties of an outbound service . |
Exceptions: |
|
Example: | ... import BcAdminOutboundService import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") os_obj=BcAdminOutboundService.getObject("OSRV",proxy_obj) os_props=BcAdminOutboundService.getProperties(os_obj) ... |