Loading...
Select Version
Function: |
Assigns a CICS component (openUTM-LU62 Gateway or communication service) to the specified proxy cluster. |
Parameters: |
Proxy object whose CICS component is to be assigned.
Type of component
openUTM-LU62 Gateway object or communication service object that is to be assigned to the proxy. |
Return: | None |
Exceptions: |
|
Example: | ... import BcAdminLu62Gateway import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") gw_props={"host": "bchost01", "install-path": "/opt/lib/utmlu62"} gw_obj=BcAdminLu62Gateway.getObject(gw_props) gw_dicn=BcAdminProxy.setAssignment(proxy_obj, "lu62gateway", gw_obj) ... |