This function serves to establish the connection with the server to the indicated port of the JMX.
1 java.jmx.JMXConnector
<java.jmx.JMXConnector
addr='addr'
host='host'
port='port'
/>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aaddr | string | Address. | |||
Ahost | string | Name of the Host. | |||
Aport | integer | Port of the JMX. |
Returns | |
---|---|
Type | Description |
JMXConnector | Returns the JMXConnector. |
Example
Copy
<xsql-script name='ws_nodes_clear_cache'> <body> <!-- Virtual Table where the processed hosts are stored and if there has been an error. --> <vtable name='v_res'> <column name='host' type='char' /> <column name='excp' type='char' /> </vtable> <try> <body> <!-- A connection with the server to the JMX port is established. --> <set name='m_connection'> <java.jmx.JMXConnector host='#m_host_name' port='8004' /> </set> </body> <catch> <!-- If there have been any problems when performing --> <!-- the operations in the host, the exception is stored. --> <vtable.insert name='v_res'> <column name='host'><m_host_name /></column> <column name='excp'><error.message/>. <error.message2/></column> </vtable.insert> </catch> </try> <!-- The table processed host|exceptions is returned. --> <return><v_res/></return> </body> </xsql-script>