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

SQL Anywhere 11.0.1 (日本語) » QAnywhere » サーバ管理要求 » QAnywhere のモニタ

 

プロパティのモニタ

サーバ管理要求を使用して、クライアントに設定されているプロパティの内容を確認できます。要求の応答によってリストされるプロパティは、クライアントに設定されているプロパティだけです。デフォルトのプロパティは含まれません。

サーバ管理要求の使い方の概要、サーバ管理要求の認証方法とスケジュールの設定方法については、サーバ管理要求の概要を参照してください。

クライアントのプロパティのリストを取得するには、サーバ管理要求で <GetProperties> タグを使用します。次に例を示します。

<?xml version="1.0" encoding="UTF-8"?>
<actions>
 <GetProperties>
  <client>ianywhere.connector.myConnector</client>
 </GetProperties>
</actions>

生成された応答は、要求が含まれているメッセージの返信先アドレスに送信されます。応答にはクライアント名と <prop> タグのリストが含まれます。タグごとに 1 つのプロパティの詳細が含まれています。次に例を示します。

<?xml version="1.0" encoding="UTF-8"?>
<GetPropertiesResponse>
 <client>ianywhere.connector.myConnector</client>
 <prop>
  <name>ianywhere.connector.logLevel</name>
  <value>4</value>
 </prop>
 <prop>
  <name>ianywhere.connector.state</name>
  <value>2</value>
 </prop>
</GetPropertiesResponse>