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 modify OPC connection parameters ?
Please Log in or Create an account to join the conversation.
I'm building an application where I connect with max. 10 OPC servers in different computers.
OPC servers are from different manufacturers and therefore I'd like to tune these connections with own parameters for each OPC server type.
Regards Kari
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Visual Studio 2008 IDE warns about following:
"Access os shared member, constant member, enum member or nested type through an instance, qualifying expression will not be evaluated"
Is this still OK (code compiles with this warning) ?
Regards Kari
=========================
Public WithEvents OPCConn1 As OpcLabs.EasyOpc.DataAccess.EasyDAClient
Dim SubscriptionHandle() As Integer
OPCConn1 = New OpcLabs.EasyOpc.DataAccess.EasyDAClient()
OPCConn1.ClientParameters.ClientReconnectDelay = 30000
SubscriptionHandle = OPCConn1.SubscribeItem(OPCMachineName, OPCServerClass, OPCItemName, DataType, OPC_UPDATE_RATE, Deadband, Nothing)
...
==========================
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I have built an OPC connection to Siemens OPC Server.
Connection works OK and I get data.
But now I'd like to modify connection parameters
- ClientReconnectDelay and so on
How to do that ?
See sample code below.
Regards,
Kari
====================================================
Public WithEvents OPCConn1 As OpcLabs.EasyOpc.DataAccess.EasyDAClient
Dim SubscriptionHandle() As Integer
Dim ClientParameters As New OpcLabs.EasyOpc.DataAccess.EasyDAClientParameters
ClientParameters.ClientReconnectDelay = 30000
' How to add ClientParameter object into EasyDAClient object ?
OPCConn1 = New OpcLabs.EasyOpc.DataAccess.EasyDAClient()
SubscriptionHandle = OPCConn1.SubscribeItem(OPCMachineName, OPCServerClass, OPCItemName, DataType, OPC_UPDATE_RATE, Deadband, Nothing)
...
====================================================
Please Log in or Create an account to join the conversation.