Loading...
Select Version
&pagelevel(5)&pagelevel
Funktion: |
Ordnet dem angegebenen Proxy eine CICS-Komponente zu (openUTM-LU62 Gateway bzw. Communication Service). |
Parameter: |
Proxy-Objekt, dessen CICS-Komponente zugeordnet werden soll.
Typ der Komponente:
openUTM-LU62 Gateway Objekt oder Communication Service Objekt, das dem Proxy zugeordnet werden soll. |
Rückgabe: | Keine |
Exceptions: |
|
Beispiel: | ...
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)
...
|