.. highlightlang:: us .. _rpc_clnt_create: rpc_clnt_create =============== .. index:: rpc_clnt_create .. us.tag rpc_clnt_create NOTREADYGERMAN New500 asam3.init :ref:`rpc_clnt_create` erzeugt einen RPC-Client-Pointer. .. function:: cl = rpc_clnt_create(host, prognum, versnum, protocol) .. us.return **Returnwert** *cl* ist ein Handle, das den RPC-Client-Pointer enthält. .. us.params **Parameter** .. uparam:: host *host* identifies the name of the remote host where the server is located. .. uparam:: prognum *prognum*. .. uparam:: versnum *versnum*. .. uparam:: protocol *protocol* ist normalerweise der String "TCP". .. us.example **Beispiel** :: loadlib("rs_aods_3.dll"); cl = rpc_clnt_create("P3200", 553652246, 3, "TCP"); envId = aop_openenv("abc_server", "nfz", cl); ... aop_closeenv(envId, cl); rpc_clnt_destroy(cl); .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Beschreibung * - 5.0.0 - Neu .. seealso:: :ref:`uberblick-asam-ods`, :ref:`rpc_clnt_destroy` :sub:`id-199603`