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

SQL Anywhere 12.0.1 » QAnywhere » 服务器管理请求 » QAnywhere 监控

 

QAnywhere 客户端监控

可以使用服务器管理请求获取当前服务器上的客户端列表。此列表包含在服务器上注册的客户端,包括远程客户端、打开的连接器和目标别名。

要获取客户端列表,请在您的服务器管理请求中使用 <GetClientList> 标记。例如:

<?xml version="1.0" encoding="UTF-8"?>
<actions>
 <GetClientList/>   (or <GetClientList></GetClientList> )
</actions>

生成的响应被发送到包含该请求的消息的回复地址。该响应包含一列 <client> 标记,每个该标记都命名一个连接到服务器的客户端。例如:

<?xml version="1.0" encoding="UTF-8"?>
<GetClientListResponse>
 <client>ianywhere.server</client>
 <client>ianywhere.connector.myConnector</client>
 <client>myClient</client>
</GetClientListResponse>
 另请参见