Loading...
Select Version
Function: |
Reads the CICS component (openUTM-LU62 Gateway or communication service) that is assigned to the specified proxy and returns a dictionary containing the element (name, object). |
Parameters: |
Proxy object whose CICS component is to be read.
Type of component |
Return: | Dictionary with one element containing the read component (name and |
Exceptions: |
|
Example: | ... import BcAdminLu62Gateway import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") gw_dicn=BcAdminProxy.getAssignment(proxy_obj, "lu62gateway") gw_name=gw_dicn.keys()[0] gw_obj=gw_dicn[gw_name] ... |