diff options
Diffstat (limited to 'readme.md')
| -rw-r--r-- | readme.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,7 +5,7 @@ A small C project that demonstrates OPC UA server discovery using the - **bobink_opcua_discovery_server** — Local Discovery Server that other servers register with - **bobink_opcua_server** — a server that periodically registers itself with the LDS -- **client** — queries the LDS for servers, lists endpoints, reads the current time, or downloads a server's certificate +- **bobink_opcua_client** — queries the LDS for servers, lists endpoints, reads the current time, or downloads a server's certificate ## Prerequisites @@ -62,16 +62,16 @@ build/bobink_opcua_server tests/secure_user/server_register.conf \ tests/secure_user/server_register_client.conf opc.tcp://localhost:14840 # 3. Find registered servers via the LDS -build/client tests/secure_user/client.conf find-servers opc.tcp://localhost:14840 +build/bobink_opcua_client tests/secure_user/client.conf find-servers opc.tcp://localhost:14840 # 4. List endpoints on the registered server -build/client tests/secure_user/client.conf get-endpoints opc.tcp://localhost:14841 +build/bobink_opcua_client tests/secure_user/client.conf get-endpoints opc.tcp://localhost:14841 # 5. Read the current time from the registered server -build/client tests/secure_user/client.conf read-time opc.tcp://localhost:14841 +build/bobink_opcua_client tests/secure_user/client.conf read-time opc.tcp://localhost:14841 # 6. Download the server's certificate to a local file -build/client tests/secure_user/client.conf download-cert opc.tcp://localhost:14841 server.der +build/bobink_opcua_client tests/secure_user/client.conf download-cert opc.tcp://localhost:14841 server.der ``` All three programs accept an optional log level as the last argument |
