Funktion: |
Ordnet dem angegebenen Proxy Cluster eine CICS-Komponente zu (openUTM-LU62 Gateway bzw. Communication Service). |
Parameter: |
Proxy Cluster Objekt, dessen CICS-Komponente zugeordnet werden soll.
Typ der Komponente:
openUTM-LU62 Gateway Objekt oder Communication Service Objekt, das dem Proxy Cluster zugeordnet werden soll. |
Rückgabe: | Keine |
Exceptions: |
|
Anmerkung: | Bei Zuordnung einer CICS-Komponente zu einem Proxy Cluster wird die CICS- Komponente implizit dem Master Proxy und allen weiteren Proxys im Cluster zugeordnet, denen keine CICS-Komponente dieses Typs zugeordnet ist. Für alle Proxys im Cluster, denen explizit eine andere CICS-Komponente dieses Typs zugeordnet ist, bleibt diese Zuordnung erhalten. |
Beispiel: | ... import BcAdminLu62Gateway import BcAdminProxyCluster ... clstr_obj=BcAdminProxyCluster.getObject("BCCluster") gw_props={"host": "bchost01", "install-path": "/opt/lib/utmlu62"} gw_obj=BcAdminLu62Gateway.getObject(gw_props) gw_dicn=BcAdminProxy.setAssignment(clstr_obj, "lu62gateway", gw_obj) ... |