- Posts: 152
- Thank you received: 0
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.
Delphi
Or are you now talking about a different tool, not Delphi?
Please Log in or Create an account to join the conversation.
Ad 1) Yes. Example comes with the product, under ExamplesCom\OP\DelphiXE7\UADocExamples, there are several examples - for UABrowseDialog, UADataDialog, UAEndpointDialog, UAHostAndEndpointDialog.
Ad 2) In QuickOPC.NET you can use callbacks instead of events, and specify a different callback function with each SubscribeDataChange.
QuickOPC-COM only has events, no callbacks, therefore this is not possible - that's how events work. You need to use the State (any value provided by your code, not the Handle) to distinguish between different subscriptions.
In theory you could create multiple EasyUAClient objects and then hook a different event handler on each of them. That will work, and on the server side it would even be efficient, because all EasyUAClient objects are handled by the same underlying engine, but it will be inefficient on the client side, causing extra resources be consumed with each EasyUAClient. If you have just a handful of items, or groups of items, then you can do that. But do not create hundreds or more EasyUAClient objects - that would not be a good idea.
Regards
Please Log in or Create an account to join the conversation.
1)It possible to show opc ua dialog in Delphi? How? it possible to have an example?
2)I have 2 subscribe item .... it possible to have 2 OnDataChangeNotification ?
for example :
i got:
Client.SubscribeDataChange(
' opcua.demo-this.com:51211/UA/SampleServer ',
'nsu=http://test.org/UA/Data/;i=10853',
1000);
Client.SubscribeDataChange(
' opcua.demo-this.com:51211/UA/SampleServer ',
'nsu=http://test.org/UA/Data/;i=10900',
500);
It possible to have 2 ondatachangeNotification or i must filter it by Handle?(In Delphi)
Please Log in or Create an account to join the conversation.