Online Forums
Technical support is provided through Support Forums below. Anybody can view them; you need to Register/Login to our site (see links in upper right corner) in order to Post questions. You do not have to be a licensed user of our product.
Please read Rules for forum posts before reporting your issue or asking a question. OPC Labs team is actively monitoring the forums, and replies as soon as possible. Various technical information can also be found in our Knowledge Base. For your convenience, we have also assembled a Frequently Asked Questions page.
Do not use the Contact page for technical issues.
Read, Write and Subscribe to data change of complex data types
More information:
- QuickOPC 2018.1 Released
- What's New in QuickOPC 2018.1
- OPC UA Complex Data Extension
- OPC UA Complex Data Reading
Best regards
Please Log in or Create an account to join the conversation.
After the objects are mapped to OPC, when the value changes, QuickOPC sets the corresponding property in the mapped object. So here, the setter of the GenericSensor.Output property is called, with a new value. The example just prints the information to the console, but you can write code that does whatever you want with the value.
See e.g. the explanation in opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...#Live%20Mapping%20Example.html .
I hope this helps
Please Log in or Create an account to join the conversation.
- vinaypatel.ce@gmail.com
-
Topic Author
- Offline
- Premium Member
-
- Posts: 8
- Thank you received: 0
One think I don’t understand with this example is, after subscription application start printing data changes for 30 second but from where? There is nothing written to print it. And how can I catch these changes in my code?
Please refer screenshot for visual.
Please Log in or Create an account to join the conversation.
The '#' character in the browse paths need to be escaped by a '&'.
A correction is needed at two places.
The beginning of the Main method should therefore look like this:
Please Log in or Create an account to join the conversation.
- vinaypatel.ce@gmail.com
-
Topic Author
- Offline
- Premium Member
-
- Posts: 8
- Thank you received: 0
"OPC-UA browse path format error: The character prefixing the reference type is invalid. It should be either '/', '.', or '<'.
The string to be parsed: "[ObjectsFolder]/Boilers/Boiler #1".
Symbolic code: InvalidReferenceTypeCharacter."
Please Log in or Create an account to join the conversation.
- vinaypatel.ce@gmail.com
-
Topic Author
- Offline
- Premium Member
-
- Posts: 8
- Thank you received: 0
"OPC-UA browse path format error: The character prefixing the reference type is invalid. It should be either '/', '.', or '<'.
The string to be parsed: "[ObjectsFolder]/Boilers/Boiler #1".
Symbolic code: InvalidReferenceTypeCharacter."
Please Log in or Create an account to join the conversation.
Example for case 1) is not different from accessing any single variable. E.g. opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...s%20of%20OPC%20UA%20Nodes.html .
Example for case 2): When you install the product and open the Visual Studio solution with C# examples, you will find it in the Console/UAConsoleLiveMapping project. Below are its major parts:
and
Please Log in or Create an account to join the conversation.
- vinaypatel.ce@gmail.com
-
Topic Author
- Offline
- Premium Member
-
- Posts: 8
- Thank you received: 0
My question is generic and I'm not targeting any specific OPC server at this point. I’m evaluating QuickOPC functionalities. But Initially it will be start with Beckhoff and B&R servers.
As you mentioned in your response, does it mean we can’t control representation of user defined structure in address space and we have to write client code based on what will OPC server present to us?
If yes, would you please suggest and show me examples for case 1 and 2 with OPCLabs sample server.
Please Log in or Create an account to join the conversation.
There is nothing (besides conventions, usefulness concerns, sector standardization efforts etc.) that prescribes to the OPC Server how the data structures you have given will be represented in OPC UA address space. It can be represented e.g.
1) by a set of seemingly unrelated variables
2) by a complex object with nodes structured so that they represent the elements of your type
3) by a single variable carrying a custom data type
4) or somehow else
Cases 1) and 2) are supported by QuickOPC, including Live Mapping (in fact, Live Mapping is specifically designed to cover case 2) excellently). Case 3) is not currently supported.
Is the OPC UA server in the device itself, or is it a separate box? What device vendor/model and OPC UA Server/model are you using?
Or is your question generic and you do not know which device or OPC server you are targeting?
Best regards
Please Log in or Create an account to join the conversation.
- vinaypatel.ce@gmail.com
-
Topic Author
- Offline
- Premium Member
-
- Posts: 8
- Thank you received: 0
Let me clear out my requirements again with example and what I’m trying to understand. Let me know if I’m misunderstood anything here and please advise to it.
By mean of complex types, I’m saying user defined structures in PLC. Below are the examples. TComplexStruct may have array of string or array of other structure type based on requirements.
Please Log in or Create an account to join the conversation.