I am working on an OPC UA project where I need to use custom DataTypes. I defined a complex object in UaModeler and used UA-ModelCompiler tool to generate the model code in C# for my OPC-UA server made using UA-.NETStandard. However, when I read from it using UaExpert, I'm unsure how the encoding and decoding of this custom DataType should be handled. It appears the data needs to be sent as a serialized ExtensionObject, however I couldn't find much documentation on how exactly to encode the custom DataType to a byte array and wrap it with ExtensionObject.
Does anyone have any information on how this is supposed to work in a non-abstract way? It seems like specific information like this is hard to come by.
I've read that the automatically generated code from UA-ModelCompiler should include encode and decode functionality, but I'm not sure how to employ that to serialize the custom DataType.
Custom OPC-UA DataTypes with UA-.NETStandard and UA-ModelCompiler
Moderator: Support Team
-
- Jr. Member
- Posts: 3
- Joined: 30 Apr 2024, 15:04
- Support Team
- Hero Member
- Posts: 3213
- Joined: 18 Mar 2011, 15:09
Re: Custom OPC-UA DataTypes with UA-.NETStandard and UA-ModelCompiler
Hi,
the GPLv2 licensed open source .NET-Standard SDK from OPC Foundation uses the UA-ModelCompiler. This is not designed to create complex, custom UA DataTypes. You can implement, but it will be a hell lot of work and manual coding. We have many customers that switched to our commercial C# SDK for exactly this reason.
Our commercial C# SDK allows (in combination with UaModeler) to generate encoder/decoder routines AND the required dictionary, which enables implementation of custom/complex types with ease.
the GPLv2 licensed open source .NET-Standard SDK from OPC Foundation uses the UA-ModelCompiler. This is not designed to create complex, custom UA DataTypes. You can implement, but it will be a hell lot of work and manual coding. We have many customers that switched to our commercial C# SDK for exactly this reason.
Our commercial C# SDK allows (in combination with UaModeler) to generate encoder/decoder routines AND the required dictionary, which enables implementation of custom/complex types with ease.
Best regards
Unified Automation Support Team
Unified Automation Support Team
-
- Jr. Member
- Posts: 3
- Joined: 30 Apr 2024, 15:04
Re: Custom OPC-UA DataTypes with UA-.NETStandard and UA-ModelCompiler
Thank you for the advice. I was hoping this wouldn't be the case but at least I know I'm not crazy.Support Team wrote: ↑02 May 2024, 09:11Our commercial C# SDK allows (in combination with UaModeler) to generate encoder/decoder routines AND the required dictionary, which enables implementation of custom/complex types with ease.
EDIT: It looks like it does. I followed the example on the UA-.NETStandard-Samples repository that I wasn't aware of and was able to get it working.