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.
Dynamically Creating Client Objects
You have multiple options to recognize the event notifications one from another:
1. Each incoming event notification has Arguments property, and in it, it has everything you have specified when subscribing - including the EndpointDescriptor and NodeDescriptor. This approach usually requires some kind of lookup or comparison in the code to tell which notification belong where - it works, but is less effective
2. You can specify the State object when making the subscription - differently for each subscription - and the State can already contain whatever data you need to handle *that* particular subscription. I would say that this is the recommended, and also most natural and most used approach.
3. You can use callbacks instead of events. The event handler is "global" for the instance of EasyUAClient, but the callback is specified with each subscription. This means that a whole different code can be hooked to each subscription.
Example for #2 (the example uses 3 nodes on the same server, but they can be on different servers too):
Best regards
Please Log in or Create an account to join the conversation.
This clarifies a lot of things we were struggling with.
Now, out of curiosity, if I were to subscribeTomultiple to both of the servers with the same client object, is there a way to separate each server's connection onDatachange handler or I will need to do everything through the same handler?
Thank you again, and best regards.
Please Log in or Create an account to join the conversation.
does this help?
Best regards
Please Log in or Create an account to join the conversation.
The customer is attempting to connect to two different servers. We would like to know the most efficient way to accomplish this. I fear that I am not understanding how you can do so with one client instance. Would you mind sharing an example?
Thank you again.
Please Log in or Create an account to join the conversation.
Before we get to the actual code, I want to clarify the requirements, and make sure this has been considered: opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...ients%20and%20Subscribers.html .
Basically, under normal circumstances, the developer can use one EasyUAClient instance to connect to multiple servers, *or* he can use multiple instances, and there won't be much difference (the differences are in how to object behaves in relation to the developer's code - e.g. each will have its own events - but connections maintained to the target servers will be *identical* in these two approaches!).
The only reasons to use the "Isolated=true" setting I can imagine are:
- There are EasyUAClient parameters that are normally shared, but the developer wants to use different parameters with different servers, or
- the developer wants to create multiple connections (sessions) to the same server (this is generally discouraged, and although there can be some rare, valid reason to do that, I would like to know what the reason is, if this is the case).
From the formulation of your question, I got somewhat suspicious, because it is not apparent why the customer wants multiple client objects (although he can...), and also not why he has chosen to make them "isolated".
Thank you
Please Log in or Create an account to join the conversation.
What is the best practice for dynamically instantiating client objects?
I had a customer reach out who would like to have multiple connections to multiple servers using multiple client objects.
I have attached a screenshot of how the customer initially tried this. Unfortunately, the object is overwritten each time the For Each loop is entered this way. For the time being, we are having him statically define two client objects.
Please Log in or Create an account to join the conversation.