Modifying connectors

To modify connectors, close the connector, change properties with the <SetProperty> tag, and then open the connector.

Example

In the following example, the logging level of the connector is changed to 4. The connector with the ID ianywhere.connector.jboss is closed; the connector property logLevel is changed to 4, and then the connector is re-opened with the new log level.

<?xml version="1.0" encoding="UTF-8"?>
<actions>
    <CloseConnector>
        <client>ianywhere.connector.jboss</client>
    </CloseConnector>
    <SetProperty>
        <prop>
       <client>ianywhere.connector.jboss</client>
  <name>ianywhere.connector.logLevel</name>
  <value>4</value>
   </prop>
    </SetProperty>
    <OpenConnector>
        <client>ianywhere.connector.jboss</client>
    </OpenConnector>
</actions>