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.
- Forum
- Discussions
- QuickOPC-Classic in .NET
- Connections, Reconnections, COM/DCOM
- Connecting to remote Machines via CODE
Connecting to remote Machines via CODE
using OpcLabs.EasyOpc;
using OpcLabs.EasyOpc.DataAccess;
EasyDAClient.SharedParameters.ClientParameters.UseCustomSecurity = false;
Best regards
Please Log in or Create an account to join the conversation.
After tinkering around I finally found the right line of code I had to use in my MainForm_Load:
OpcLabs.EasyOpc.DataAccess.EasyDAClient.SharedParameters.ClientParameters.UseCustomSecurity = false;
is doing the trick. Now I can finally test and evaluate QuickOPC.
Again, thank you for you great support!
Please Log in or Create an account to join the conversation.
In addition, be aware that SharedParameters is a *static* property on the EasyDAClient class itself. That it, you need to use the type name (easyDAClient) itself (EasyDAClient.SharedParameters.ClientParameters), and *not* the variable that holds your instance of the EasyDAClient type.
Please Log in or Create an account to join the conversation.
I am having a hard time figuring that out...
I always get the error that EasyDAClient does not contain definitions of Clientparameters.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
EasyDAClient.SharedParameters.Client.UseCustomSecurity = false;
Please Log in or Create an account to join the conversation.
OpcLabs.EasyOpc.DataAccess.EasyDAClient.ClientParameters.UseCustomSecurity = false;
Please Log in or Create an account to join the conversation.
EasyDAClient.ClientParameters.UseCustomSecurity
EasyDAClient.ClientParameters.TurnOffActivationSecurity
EasyDAClient.ClientParameters.TurnOffCallSecurity
[ADDED LATER: TurnOffCallSecurity only has any influence when UseCustomSecurity == true.]
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Forum
- Discussions
- QuickOPC-Classic in .NET
- Connections, Reconnections, COM/DCOM
- Connecting to remote Machines via CODE