ServerDiscovery QML Type
利用可能なサーバーに関する情報を提供する。詳細...
Import Statement: | import QtOpcUa |
Since: | QtOpcUa 5.13 |
プロパティ
- connection : Connection
- count : int
- discoveryUrl : string
- status : Status
メソッド
- ApplicationDescription at(index)
詳細説明
サーバーまたはディスカバリーサーバーが知っているサーバーに関する情報を取得し、アクセスできるようにします。
QtOpcUa.Connection { id: connection backend: availableBackends[0] defaultConnection: true } QtOpcUa.ServerDiscovery { discoveryUrl: "opc.tcp://127.0.0.1:43344" onServersChanged: { if (status.isGood) { if (status.status == QtOpcUa.Status.GoodCompletesAsynchronusly) return; // wait until finished if (count > 0) { // choose right server endpointDiscovery.serverUrl = at(0).discoveryUrls[0]; console.log("Using server URL:", endpointDiscovery.serverUrl); } else { // no servers retrieved } } else { // Fetching servers failed console.log("Error fetching server:", servers.status.status); } } } QtOpcUa.EndpointDiscovery { id: endpointDiscovery onEndpointsChanged: { if (status.isGood) { if (status.status == QtOpcUa.Status.GoodCompletesAsynchronusly) return; // wait until finished if (count > 0) { // choose right endpoint console.log("Using endpoint", at(0).endpointUrl, at(0).securityPolicy); connection.connectToEndpoint(at(0)); } else { // no endpoints retrieved } } else { // Fetching endpoints failed console.log("Error fetching endpoints:", status.status); } } }
プロパティの説明
connection : Connection |
情報のリクエストに使用する接続。
このプロパティが設定されていない場合、デフォルトの接続が使用されます。
Connection およびConnection::defaultConnectionも参照のこと 。
count : int |
discoveryUrl : string |
サーバーの一覧を取得するサーバーの URL。URLが変更されるたびに、指定したサーバーへのリクエストが開始される。
リクエストを開始すると、利用可能なサーバーのリストは消去され、ステータスはStatus.GoodCompletesAsynchronously に設定される。リクエストが終了すると、status が変更される。サーバーのリストにアクセスする前に、必ずstatus を確認してください。
onServersChanged: { if (status.isGood) { if (status.status == QtOpcUa.Status.GoodCompletesAsynchronusly) return; // wait until finished if (count > 0) { var serverUrl = at(0).serverUrl(); console.log(serverUrl); } } else { // handle error } }
ApplicationDescription,status,at,count,Statusも参照のこと 。
status : Status |
この要素の現在のステータス。最後にサーバーの検索に成功した場合、ステータスはStatus.Good
になります。
if (status.isGood) { // Choose endpoint to connect to } else { // handle error }
Statusも参照 。
メソッド Documentation
ApplicationDescription at(index) |
指定されたindex のアプリケーションの説明を返します。利用可能なサーバーが存在しない場合やインデックスが無効な場合は、無効なアプリケーションの説明を返します。返されたデータを使用する前に、情報の取得が成功したかどうかstatus を確認する必要があります。
if (servers.status.isGood) { if (servers.count > 0) var serverUrl = at(0).serverUrl(); console.log(serverUrl); // Choose endpoint to connect to } else { // handle error }
count 、status 、ApplicationDescriptionも参照して ください。
本ドキュメントに含まれる文書の著作権は、それぞれの所有者に帰属します。 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。