- Posts: 40
- Thank you received: 2
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.
Subscription stopped firing events
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
OpcLabs.BaseLib.dll = 5.54.1281.1
OpcLabs.EasyOpcClassic.dll = 5.54.0.0
OpcLabs.EasyOpcUA.dll = 5.54.1281.1
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
support wrote: Hello.
Answering:
"Is QuickOPC supposed to handle subscription "timing-out" because of a lack of activity? "
No. Even in absence of true data changes, OPC UA protocol exchanges kind of keep-alive messages, so in fact there is no "inactivity".
"Should an event fire? "
If there was a true inactivity, meaning that the keep-alive messages were not being exchanged, yes, an event should fire, with an error. If the data is not changing but keep-alives are OK, there should be no event fired by QuickOPC to your code. But of course when there finally is new data, they should be sent to you.
Best regards
Understood, but why are we not receiving any data change events. If I use UaExpert client, I see occasional data changes, maybe every hour or so.
Won't the keep-alive eventually stop after some period of time without data changes?
Is there any way more me to monitor the keep-alive messages in OPC Labs?
If needed, my boss is OK with us sharing our simulator with you. We can also provide out test app code as well. If this is something you want to explore, please email me directly. (I'm assuming you have access to my email address. If not, please let me know how to reach you.)
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
OpcLabs.BaseLib.dll = 5.54.1156.1
OpcLabs.EasyOpcClassic.dll = 5.54.0.0
OpcLabs.EasyOpcUA.dll = 5.54.1156.1
I noticed there is a newer version on NuGet, I'll try that one today.
Please Log in or Create an account to join the conversation.
Answering:
"Is QuickOPC supposed to handle subscription "timing-out" because of a lack of activity? "
No. Even in absence of true data changes, OPC UA protocol exchanges kind of keep-alive messages, so in fact there is no "inactivity".
"Should an event fire? "
If there was a true inactivity, meaning that the keep-alive messages were not being exchanged, yes, an event should fire, with an error. If the data is not changing but keep-alives are OK, there should be no event fired by QuickOPC to your code. But of course when there finally is new data, they should be sent to you.
Best regards
Please Log in or Create an account to join the conversation.
thank you for the additional information.
Which QuickOPC build are you running? (the last two numbers in 5.54.x.y, as taken form the actual assemblies you are building against and testing with).
Best regards
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
Here are the logs messages that occur between successful data change events in the debugger.
Here is the messages the occurs when run as a standalone app.
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
We basically mimicked this by running our server with no data changing occurring automatically. We then manually change the data on the server which causes the data change events to occur in the client. But if we stop for about 15 minutes, the events stop occurring on the client. The data is changing on the server.
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
No events fired on the client. We have handlers for all events and none of these handlers were initiated.
Is QuickOPC supposed to handle subscription "timing-out" because of a lack of activity? Should an event fire? I guess I'm just trying to figure out how this is supposed to work.
Here is basically the code that initiates the subscription.
Here are the results of a the ServerConditionChanged event and a couple LogEntry events.
I'm going to analyze the dumpfile next but I'm not sure what I'll find. Any other suggestions? This is a pretty straight forward test.
Please Log in or Create an account to join the conversation.
Having LogEntry notifications would be helpful, to see if there is anything related to the devices in question.
My expectation is, however, that there won't be any related events. In such case, it might be a deadlock inside the component. We have had it in the past, with similar symptoms. The way to diagnose it was to break into debugger, collect call stacks of all threads, and then analyze whether there is a deadlock and which threads and call sequences are involved. Of course, the more is running, the more data there is to analyze and it becomes difficult, but it is worth trying.
With .NET Framework, it was possible to obtain a memory dump (which included the call stacks) and analyze it off-line (here). In principle, the same should be possible with .NET Core, at least under Windows, but I have not done that yet. See e.g. michaelscodingspot.com/how-to-create-use-and-debug-net-application-crash-dumps-in-2019/ .
Best regards
Please Log in or Create an account to join the conversation.
- sjscheider
-
Topic Author
- Offline
- Platinum Member
-
- Posts: 40
- Thank you received: 2
Our customer has indicated that they have seen the issue with only 3 controllers/devices connected. I've actually witness the issue when 100+ devices were connected. In all cases, restarting the client all solved the issue.
We've added more diagnostics to our code to determine if we can get any insights into the issue. Any recommendations you have would be greatly appreciated.
Please Log in or Create an account to join the conversation.