Adds Security section to appsettings.json with configurable OPC UA transport profiles (None, Basic256Sha256-Sign, Basic256Sha256-SignAndEncrypt), certificate policy settings, and a configurable BindAddress for the OPC UA endpoint. Defaults preserve backward compatibility. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
51 lines
2.0 KiB
C#
51 lines
2.0 KiB
C#
using CliFx;
|
|
using CliFx.Attributes;
|
|
using CliFx.Infrastructure;
|
|
using Opc.Ua;
|
|
using Opc.Ua.Client;
|
|
|
|
namespace OpcUaCli.Commands;
|
|
|
|
[Command("read", Description = "Read a value from a node")]
|
|
public class ReadCommand : ICommand
|
|
{
|
|
/// <summary>
|
|
/// Gets the OPC UA endpoint URL to connect to before reading.
|
|
/// </summary>
|
|
[CommandOption("url", 'u', Description = "OPC UA server endpoint URL", IsRequired = true)]
|
|
public string Url { get; init; } = default!;
|
|
|
|
[CommandOption("username", 'U', Description = "Username for authentication")]
|
|
public string? Username { get; init; }
|
|
|
|
[CommandOption("password", 'P', Description = "Password for authentication")]
|
|
public string? Password { get; init; }
|
|
|
|
[CommandOption("security", 'S', Description = "Transport security: none, sign, encrypt (default: none)")]
|
|
public string Security { get; init; } = "none";
|
|
|
|
/// <summary>
|
|
/// Gets the node identifier whose value should be read.
|
|
/// </summary>
|
|
[CommandOption("node", 'n', Description = "Node ID (e.g. ns=2;s=MyNode)", IsRequired = true)]
|
|
public string NodeId { get; init; } = default!;
|
|
|
|
/// <summary>
|
|
/// Connects to the endpoint, reads the target node, and prints the returned value details.
|
|
/// </summary>
|
|
/// <param name="console">The console used to report the read result.</param>
|
|
public async ValueTask ExecuteAsync(IConsole console)
|
|
{
|
|
using var session = await OpcUaHelper.ConnectAsync(Url, Username, Password, Security);
|
|
|
|
var node = new NodeId(NodeId);
|
|
var value = await session.ReadValueAsync(node);
|
|
|
|
await console.Output.WriteLineAsync($"Node: {NodeId}");
|
|
await console.Output.WriteLineAsync($"Value: {value.Value}");
|
|
await console.Output.WriteLineAsync($"Status: {value.StatusCode}");
|
|
await console.Output.WriteLineAsync($"Source Time: {value.SourceTimestamp:O}");
|
|
await console.Output.WriteLineAsync($"Server Time: {value.ServerTimestamp:O}");
|
|
}
|
|
}
|