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.
PC Upgraded to 20H2 will not connect to OPC Server
Best regards.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I cannot be sure, but one reason can be the changes in version 2020.3: kb.opclabs.com/What%27s_new_in_QuickOPC_2020.3#OPC_Classic_2 . There were many that affected how OPC Data Access works, but in the end the behavior was designed to be mostly the same, except for pieces specifically mentioned in the article.
(also see opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...html#OPC%20DA%20Optimizer.html )
It would be worth to try re-enabling the auto-subscribing optimization. In .NET, it would be the following code:
DAOptimizerPluginParameters optimizerPluginParameters =
client.InstanceParameters.PluginConfigurations.Find<DAOptimizerPluginParameters>();
if (!(optimizerPluginParameters is null))
optimizerPluginParameters.EnableAutoSubscribing = true;
From COM tools (PowerBuilder), you would need to do an equivalent thing. The PluginConfigurations.Find<DAOptimizerPluginParameters>() call would be replaced by
PluginConfigurations.FindByName("DAOptimizerPluginParameters").
Have you tried to stay with your current version, and apply the configuration file workaround?
Best regards
Please Log in or Create an account to join the conversation.
1. the opcua client seemed to work fine.
2. the opcda client does not work effectively.
it takes over 5 secs to respond data back when it is was 50 mili secs before. Why?
Now I am doing device reads. it is critiacl and requried that I get the data from the device and not from cache in the server.
it worked fine under 2019.1 but this version takes upwards of 5 secs to read. It took like 5 min more by app to start up and under the old one it was 20 secs or so.
Are thre new settings or somehting I should be doing?
Please Log in or Create an account to join the conversation.
I recommend that you uninstall the version you have and install the new one. The "latest installed" version will end up being used anyway (not the "one with highest number"), but following this recommendation is safer.
More about this: opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2....html#Version%20Isolation.html (under COM Development). I assume that PowerBuilder uses late binding, in which case it does not matter on which computer (with which version) you create the program, only the runtime computer matters.
Best regards
Please Log in or Create an account to join the conversation.
Once I download how does my app know to connect to the latest version when both versions are on a pc?
All I am doing to connect is
if gb_opc_ua then
g_opclabs.ConnectToNewObject("OpcLabs.EasyOpc.UA.EasyUAClient")
g_opclabs.Isolated = true
else
g_opclabs.ConnectToNewObject("OpcLabs.EasyOpc.DataAccess.EasyDAClient")
end if
does it automatically find the latest version via the registry?
Please Log in or Create an account to join the conversation.
please try the instructions here: kb.opclabs.com/How_to_disable_prerequisites_boxing .
You need the file contents listed at the bottom. And place the file alongside your EXE, and name it <yourexefilename>.exe.config.
QuickOPC version 2019.1 may have issues on Windows 10 version 20H2, see kb.opclabs.com/Versions , so it's not quite a surprise.
If the instructions above do not help, make a test with the recent QuickOPC version.
Best regards
Please Log in or Create an account to join the conversation.
I am using Powebuilder 2017, and opclabs version 2019.R1. Is anyone aware of similar issues? Any suggestions.
Please Log in or Create an account to join the conversation.