Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » QAnywhere » Creating QAnywhere Applications » Server management requests » Administering connectors with server management requests

 

Deleting connectors

To delete connectors, use <SetProperty> with a client name but no other values.

Example

In the following example, the connector with the ID ianywhere.connector.jboss is closed. All of its properties are deleted by the <SetProperty> tag, omitting the name and value tags.

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