...
The Python Connector agent configuration has three tabs: General, API and MIM.
General Tab
The Python Connector agent - General tab
...
Setting | Description |
---|---|
Host | The IP address or hostname to which the Python Connector will bind. If left empty, the Python Connector binds to all IP addresses available on the system. |
Port | The port number on which the Python Connector will bind. Ensure that the port is not used by other applications. |
Allow Multiple Connections | If enabled, several connections are allowed simultaneously. If disabled, only one at a time is allowed. |
Number of Connections Allowed | If Allow Multiple Connections is enabled, the maximum number of simultaneous connections is specified as a number between 0 and 99999. |
Use Connection Control | Select this option if you want to control connection requests individually. If you select this option, you may need to make a selection for Route Connection Requests on. See the description below. |
Route Connection Requests on | Select on which route you want to route connection requests when a user requests to connect. Select one of the possible routes listed in the drop-down list. |
Use per Connection Routing | Select this check box if you want to control what each individual connection is routing. |
Use TLS | Select this check box if you want to use TLS. When you select this check box, the fields under Security are enabled. If you want connections to use SSL, see 9.6263.6.35 Connecting Using SSL. |
Keystore Path | Enter the path to the keystore in this field. |
Keystore Password | Enter the password for the keystore in this field. |
Key Alias | Enter the alias for the key in the keystore in this field. This field is optional |
Key Password | Enter the password for the key alias in this field. This field is optional. |
Require Client Authentication | Select this check box if you require client authentication from all connecting clients. |
Accepted Types | Select which data types are to be accepted by the Python Connector agent. You can select UDR types or bytearrays. |
Output Routes | Enter which route accepts what data type. |
API Tab
The API tab allows you to define your own agent API exposed to your connecting users.
...
For further information on writing code in the API tab, see 9.6362.5 Python Writer's Guide.
Python Connector agent - API tab
MIM Tab
In the MIM tab you can set the MIMs that you want the the Python Connector agent to publish.
...
Parameter | Description |
---|---|
Assigned | Select the type of MIM assigned. Only MIMs of the global type are available. |
Name | Enter the MIM resource name. |
Type | Select the data type of MIM resource. |
Connecting with an Exploration Tool using Python
To be able to connect the exploration tool of your choice to the Python Connector agent, you must first import the connector Python module: mzconnector.py
. The connector module, mzconnector.py
, is extracted to MZ_HOME/python
during installation. For easy access, you can copy this module to a directory on your local machine, which you will connect from.
...