OpcUaCreateCertificate Property
General info
Label |
Create Certificate |
Description |
Create self signed certificate if it does not exist |
Data type |
Boolean |
Default value |
true |
Type |
Regular |
Code |
1719 |
Symbolic name |
MODEL_PROP_OPCUACREATECERTIFICATE |
Lua access code |
inmation.model.properties.OpcUaCreateCertificate |
Available since |
1.8.1.1450 |
- Parent properties
Attributes
Name | Tooltip |
---|---|
PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs |
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs |
PROP_HAS_DEFAULT | The property has a default value as standard |
Examples
Read from or write to the OpcUaCreateCertificate
property.
-- Read from the OpcUaCreateCertificate
inmation.getvalue("<OBJECT FULL PATH>.OpcUaCertificateSecurity.OpcUaCreateCertificate")
-- Write to the OpcUaCreateCertificate
inmation.setvalue("<OBJECT FULL PATH>.OpcUaCertificateSecurity.OpcUaCreateCertificate", true)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the OpcUaCreateCertificate
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.OpcUaCertificateSecurity.OpcUaCreateCertificate"));
// Write to the OpcUaCreateCertificate
Result result = sli.WriteValue(sc, new WriteItem(true, "<OBJECT FULL PATH>.OpcUaCertificateSecurity.OpcUaCreateCertificate"));