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.
"An invalid handle was specified" after app. 25 sec.
The ServiceResultException, by itself, can appear even during normal operations, and is handled internally in the toolkit. But it should not cause further problems or an app crash, of course. Does the app crash *immediately* follow these exceptions?
Regards
Please Log in or Create an account to join the conversation.
And sometimes:
I haven't changed anything in the project, so that this exception is thrown suddenly is remarkable. Is this more helpful to you to determine the possible cause?
EDIT: I have reason to suspect this error message appears because the program crashes somewhere before, and because of this crash, the ServiceException message appears as it couldn't close it's channel properly.
Please Log in or Create an account to join the conversation.
Once I get more information about the issue, one way or another, I will update this thread. For now I will leave it as is and try sorting another computer to get going without these errors.
Have a nice day!
Reno
Please Log in or Create an account to join the conversation.
I am quite confident that you have not overlooked anything. It should work under 64-bits as well, and it works on other computers. But the reason is probably an unexpected conflict with something else on your computer, or a hidden bug in QuickOPC. Either way, it's probably not that you are doing something wrong.
Regards
Please Log in or Create an account to join the conversation.
Thanks for your continued support.
I've narrowed down the issue to the "Target CPU" setting. If this is set on "AnyCPU", the application crashes. If this is set to "x86" it runs in the debugger without any issues.
I was pretty confident it works on 64-bit, as I got another application with the same version of the references working on the "Target CPU" setting set on "AnyCPU".
At this moment, I am quite certain I am overlooking something very easy...
Please Log in or Create an account to join the conversation.
What you have posted in not the call stack yet. It is just a debugger output. What we are looking for is a break into the debugger at the moment the exception is thrown, in order to be able to view the call stack, i.e. the list of uncompleted function calls from top to bottom that lead to the exception.
There are some fairly reliable ways to get that information, but they are also somewhat complicated for an unexperienced - such as what is described here: blogs.msdn.microsoft.com/ntdebugging/2008/05/19/ntdebugging-...alid-handle-can-you-handle-it/ . But if you were willing to go that way, it would be appreciated.
Best regards
Please Log in or Create an account to join the conversation.
With the changes you provided, the following error message occurs:
This also happens with my Anti-Virus disabled (ESET NOD32).
Full callstack:
EDIT: The error callstack for EasyOpcUADemo is more or less the same. It also fails with the same error.
Please Log in or Create an account to join the conversation.
If you have some kind of antivirus or other system-affecting software, try to turn it off temporarily to see if it is not causing it.
With the intent to catch the cause of the exception, can you please also try one or two of the following:?
- Right-click on you project node in VS Solution Explorer, select Properties command. Then switch to the Debug tab, check "Enable native code debugging", rebuild and start the project.
- Tools -> Options, Debugging: check "Use Managed Compatibility Mode".
If the behavior changes and the debugger kicks in when the exception is thrown, we would be happy to learn about the call stack(s) at the point of exception.
Best regards
Please Log in or Create an account to join the conversation.
It only crashes when it's being debugged in VS2017. When I run the program without the debugger it works fine. So I assume the debugger is causing the libraries to throw errors.
I really have no idea whether this is expected behavior for the OPCLabs VB libraries (maybe some functions are being called which the debugger does not like?)
Anyhow, the program is working now, even though with a workaround. If you find a permanent fix so I can run the program inside the debugger, that would be really helpful.
Thanks for the support so far. Have a nice day.
EDIT:
1. I have tested it, and the UA demo provided by OPCLabs crashes also with the C# version in debugging mode.
2. This was already enabled.
Please Log in or Create an account to join the conversation.
We do not actually officially support Visual Studio Community Edition (and have not tested with it); on the other hand, I do not see why it shouldn't work with it. So, in an attempt to reproduce it, I will install the VS Community Edition and try it out.
In the meantime, can you please test following two things?
1. If you load the solution with C# examples and try the same project, how does it behave?
2. In VS, do Debug -> Windows -> Exception Settings, and in the Exception Settings window, right-click "Win32 Exceptions", select Add command, and add 0xc0000008. The re-run in debugger to see if it does not break into the debugger and give you more info such as call stacks.
Best regards
Please Log in or Create an account to join the conversation.