- Posts: 16
- Thank you received: 1
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.
How to call a method with complex type arguments
- Exception {"An OPC-UA operation failure with error ID 'OpcLabs.EasyOpc.UA.UAResultException' occurred, originating from '' and with depth of 1. The inner exception, of type \"OpcLabs.EasyOpc.UA.UAResultException\", contains details about the problem.\r\n+ The client method called was 'CallMultipleMethods'."} System.Exception {OpcLabs.EasyOpc.UA.OperationModel.UAException}
- InnerException (System.Exception) {"The OPC UA server has returned a null result, but this operation requires a non-null value."} System.Exception {OpcLabs.EasyOpc.UA.UAResultException}
Please let me know what else I can do to assist you.
Please Log in or Create an account to join the conversation.
I had a look into the code indicated by the call stack, and there may (or not) be a bug in QuickOPC. What the bug would do is that in case of some exceptions in CallMethod, it would incorrectly throw ArgumentException. If this hypothesis is correct, it would mean that you still have some issue with the Call - but in addition to it, ArgumentException is thrown.
In order to verify this, can you please use CallMultipleMethods instead, passing it an array of just one element, and then check (and post here) what you get in the .Exception property of the element 0 of the result array?
Thank you
Please Log in or Create an account to join the conversation.
We are trying to call a method on the server which uses a complex type as the first argument. The code we are trying is as follows:
when attempting to execute that block, there is always an exception thrown when the CallMethod tries to happen. Exception is a System.ArgumentException:
We have had plenty of success calling methods on the server that only take simple types as the arguments. Wondering if there is something you can pointto in our code on what might be causing these issues.
Thanks
Please Log in or Create an account to join the conversation.