Loading...
Select Version
Function: |
Reads all the proxies to which the specified communication service is assigned and returns a dictionary with proxy names and proxy objects ( |
Parameters: |
Communication service whose proxy assignment is to be read. |
Return: | Dictionary with the name-object pairs of all the proxies to which the communication service is assigned. |
Exceptions: |
|
Note: | The list of proxy names can also be read via the |
Example: | ... import BcAdminCommunicationService ... getProps={"host": "bchost01", "install-path":"/opt/ibm/sna/bin"} cs_obj=BcAdminCommunicationService.getObject(getProps) proxyDicn=BcAdminCommunicationService.getProxies(cs_obj) for proxy_name, proxy_obj in proxyDicn.iteritems(): print "handle proxy " + proxy_name ... |