Skip to content

Commit

Permalink
Modelcompiler 1.05.01 2022 02 24 (#1722)
Browse files Browse the repository at this point in the history
Incorporate .05.01 2022 02 24 NodeSet

Co-authored-by: Randy Armstrong <randy@sparhawksoftware.com>
  • Loading branch information
mregen and randy-armstrong committed Feb 28, 2022
1 parent 25ed111 commit bc03c7c
Show file tree
Hide file tree
Showing 13 changed files with 94,725 additions and 36,252 deletions.
1,670 changes: 1,662 additions & 8 deletions Stack/Opc.Ua.Core/Schema/NodeIds.csv

Large diffs are not rendered by default.

39,057 changes: 24,329 additions & 14,728 deletions Stack/Opc.Ua.Core/Schema/Opc.Ua.NodeSet2.xml

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Stack/Opc.Ua.Core/Schema/Opc.Ua.StatusCodes.csv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ BadServiceUnsupported,0x800B0000,"The server does not support the requested serv
BadShutdown,0x800C0000,"The operation was cancelled because the application is shutting down."
BadServerNotConnected,0x800D0000,"The operation could not complete because the client is not connected to the server."
BadServerHalted,0x800E0000,"The server has stopped and cannot process any requests."
BadNothingToDo,0x800F0000,"There was nothing to do because the client passed a list of operations with no elements."
BadNothingToDo,0x800F0000,"No processing could be done because there was nothing to do."
BadTooManyOperations,0x80100000,"The request could not be processed because it specified too many operations."
BadTooManyMonitoredItems,0x80DB0000,"The request could not be processed because there are too many monitored items in the subscription."
BadDataTypeIdUnknown,0x80110000,"The extension object cannot be (de)serialized because the data type id is not recognized."
Expand Down Expand Up @@ -258,4 +258,5 @@ GoodCascadeNotInvited,0x04030000,"The value source supports cascade handshaking,
GoodCascadeNotSelected,0x04040000,"The value source supports cascade handshaking, however, the source has not selected the corresponding cascade primary for use."
GoodFaultStateActive,0x04070000,"There is a fault state condition active in the value source."
GoodInitiateFaultState,0x04080000,"A fault state condition is being requested of the destination."
GoodCascade,0x04090000,"The value is accurate, and the signal source supports cascade handshaking."
GoodCascade,0x04090000,"The value is accurate, and the signal source supports cascade handshaking."
BadDataSetIdInvalid,0x80E70000,"The DataSet specified for the DataSetWriter creation is invalid."
209 changes: 200 additions & 9 deletions Stack/Opc.Ua.Core/Schema/Opc.Ua.Types.bsd

Large diffs are not rendered by default.

430 changes: 419 additions & 11 deletions Stack/Opc.Ua.Core/Schema/Opc.Ua.Types.xsd

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion Stack/Opc.Ua.Core/Security/Certificates/CertificateValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,18 @@ private void SaveCertificate(X509Certificate2 certificate)
try
{
store.Delete(certificate.Thumbprint);
store.Add(certificate);
// save only public key
if (certificate.HasPrivateKey)
{
using (var cert = new X509Certificate2(certificate.RawData))
{
store.Add(cert);
}
}
else
{
store.Add(certificate);
}
}
finally
{
Expand Down
23,365 changes: 17,343 additions & 6,022 deletions Stack/Opc.Ua.Core/Stack/Generated/Opc.Ua.Classes.cs

Large diffs are not rendered by default.

Loading

0 comments on commit bc03c7c

Please sign in to comment.