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.
Search Results (Searched for: operationtimeout)
06 Aug 2024 09:18
Replied by xpycy001 on topic The client appears to have stopped running
Modified the following parameter values
EasyUAClient.AdaptableParameters.SessionParameters.ServerShutdownRetrialDelay = 5minutes
EasyUAClient.AdaptableParameters.SessionParameters.EndpointSelectionTimeout
EasyUAClient.AdaptableParameters.SessionParameters.SessionConnectTimeout
EasyUAClient.AdaptableParameters.SessionParameters.OperationTimeout
EasyUAClient.AdaptableParameters.SessionParameters.CloseTimeout
EasyUAClient.AdaptableParameters.SessionParameters.ServerShutdownRetrialDelay = 5minutes
EasyUAClient.AdaptableParameters.SessionParameters.EndpointSelectionTimeout
EasyUAClient.AdaptableParameters.SessionParameters.SessionConnectTimeout
EasyUAClient.AdaptableParameters.SessionParameters.OperationTimeout
EasyUAClient.AdaptableParameters.SessionParameters.CloseTimeout
05 Jul 2024 08:11
Replied by xpycy001 on topic The client appears to have stopped running
Hi ,support:
Review current issues
1) During the operation of the client, when the machine is disconnected, there is a connection exception that causes the thread to become larger, ultimately reaching the maximum thread pool limit ( ThreadPool Max Count: 2000)
2) has manually set the time interval for retry connections. For example, I set the interval to 5 minutes, but in reality, the connection is reconnected after 20 seconds. Please refer to the attached screenshot
3) I now want OpcUAclient to try reconnecting every five minutes for disconnected machines. How do I configure the parameters ?
current setting:
"RetryConnectDelay": 300,
"EndpointSelectionTimeout": 15000,
"SessionConnectTimeout": 60000,
"OperationTimeout": 120000,
"CloseTimeout": 5000,
easyUAClient.IsolatedParameters.SessionParameters.RetrialDelay = 300 * 1000;
EasyUAClient.AdaptableParameters.SessionParameters.RetrialDelay = 300 * 1000;
Simon
2024.7.5 16:03
05 Jul 2024 08:05
Replied by xpycy001 on topic The client appears to have stopped running
Hi ,support:
Review current issues
1) During the operation of the client, when the machine is disconnected, there is a connection exception that causes the thread to become larger, ultimately reaching the maximum thread pool limit ( ThreadPool Max Count: 2000)
2) has manually set the time interval for retry connections. For example, I set the interval to 5 minutes, but in reality, the connection is reconnected after 20 seconds. Please refer to the attached screenshot
3) I now want OpcUAclient to try reconnecting every five minutes for disconnected machines. How do I configure the parameters ?
current setting:
"RetryConnectDelay": 300,
"EndpointSelectionTimeout": 15000,
"SessionConnectTimeout": 60000,
"OperationTimeout": 120000,
"CloseTimeout": 5000,
easyUAClient.IsolatedParameters.SessionParameters.RetrialDelay = 300 * 1000;
EasyUAClient.AdaptableParameters.SessionParameters.RetrialDelay = 300 * 1000;
Simon
2024.7.5 16:03
Review current issues
1) During the operation of the client, when the machine is disconnected, there is a connection exception that causes the thread to become larger, ultimately reaching the maximum thread pool limit ( ThreadPool Max Count: 2000)
2) has manually set the time interval for retry connections. For example, I set the interval to 5 minutes, but in reality, the connection is reconnected after 20 seconds. Please refer to the attached screenshot
3) I now want OpcUAclient to try reconnecting every five minutes for disconnected machines. How do I configure the parameters ?
current setting:
"RetryConnectDelay": 300,
"EndpointSelectionTimeout": 15000,
"SessionConnectTimeout": 60000,
"OperationTimeout": 120000,
"CloseTimeout": 5000,
easyUAClient.IsolatedParameters.SessionParameters.RetrialDelay = 300 * 1000;
EasyUAClient.AdaptableParameters.SessionParameters.RetrialDelay = 300 * 1000;
Simon
2024.7.5 16:03
16 Jun 2024 11:55
Replied by xpycy001 on topic The client appears to have stopped running
Hi , support:
The following information is recently collected
Part A :
Regarding the issue of stopping production in this specific situation, a lot of tests have been conducted recently, and the environment is as follows:
1.1 We used 5 physical machines and simulated 12 VM virtual machines. Each virtual machine was templated with an opcServer (Kepserver) and imported 300 points,
1.2 There are a total of 12000 point configurations, of which 30 points are written back per second. Finally, a client. exe (EaseyUaClient) is used to connect simultaneously
1.3 Using unplugging the network cable, modifying the point path (simulating batch point not saving), and shutting down the virtual machine, after repeated attempts, the problem could not be reproduced, and finally abandoned this simulation.
Part B:
1) Has been on the actual project site recently, with more than 30 clients in total, and a few of them have encountered anomalies again. I have conducted corresponding information collection
2) I have monitored the number of threads on each client. exe (EasyUAClient) end, and there is a slow growth of client threads, ranging from exceptions to reaching the upper limit, which takes about 1-4 hours before and after;
3) I extracted the dump document and opened and analyzed it using VS2022, with clear exception prompts
4) There are more than 1920 threads queuing, all waiting for another thread. I will delay taking a screenshot of the code location
5) The code for the most internal waiting;
dump debugger:
[24256] NET ThreadPool Worker =>
UaSCUaBinaryClientChannel. cs=> line 265
1==>writeOperation End (int. MaxValue);==>// here....
Opc.Ua.Core.dll Opc.Ua.Bindings.ChannelAsyncOperation at line 185
2=>if (! M event. WaitOne (timeout)&&throwOnError) //here: WaitOne (timeout)
at same time : 1,978 Threads blocked at same code line
I Think , may be timeout too largue,retry interval too small
I noticed the target m event Set() is related to timeout, I am trying to adjust the parameters
EndpointSelectionTimeout = 15* 1000
SessionConnectTimeout=15 * 1000
OperationTimeout=10 * 1000
CloseTimeout=5 * 1000
RetryConnectDelay=60*1000
The following information is recently collected
Part A :
Regarding the issue of stopping production in this specific situation, a lot of tests have been conducted recently, and the environment is as follows:
1.1 We used 5 physical machines and simulated 12 VM virtual machines. Each virtual machine was templated with an opcServer (Kepserver) and imported 300 points,
1.2 There are a total of 12000 point configurations, of which 30 points are written back per second. Finally, a client. exe (EaseyUaClient) is used to connect simultaneously
1.3 Using unplugging the network cable, modifying the point path (simulating batch point not saving), and shutting down the virtual machine, after repeated attempts, the problem could not be reproduced, and finally abandoned this simulation.
Part B:
1) Has been on the actual project site recently, with more than 30 clients in total, and a few of them have encountered anomalies again. I have conducted corresponding information collection
2) I have monitored the number of threads on each client. exe (EasyUAClient) end, and there is a slow growth of client threads, ranging from exceptions to reaching the upper limit, which takes about 1-4 hours before and after;
3) I extracted the dump document and opened and analyzed it using VS2022, with clear exception prompts
4) There are more than 1920 threads queuing, all waiting for another thread. I will delay taking a screenshot of the code location
5) The code for the most internal waiting;
dump debugger:
[24256] NET ThreadPool Worker =>
UaSCUaBinaryClientChannel. cs=> line 265
1==>writeOperation End (int. MaxValue);==>// here....
Opc.Ua.Core.dll Opc.Ua.Bindings.ChannelAsyncOperation at line 185
2=>if (! M event. WaitOne (timeout)&&throwOnError) //here: WaitOne (timeout)
at same time : 1,978 Threads blocked at same code line
I Think , may be timeout too largue,retry interval too small
I noticed the target m event Set() is related to timeout, I am trying to adjust the parameters
EndpointSelectionTimeout = 15* 1000
SessionConnectTimeout=15 * 1000
OperationTimeout=10 * 1000
CloseTimeout=5 * 1000
RetryConnectDelay=60*1000
21 Dec 2021 06:56
Replied by support on topic OPC UA browsing - DiscoverNetworkServer, DiscoverLocalServer Timeout setting
Hello.
This can be either a timeout returned by the server (in which case it might only be possible to change it on the server side), or one of "our" timeouts. They are described here: kb.opclabs.com/QuickOPC-UA_Timeout_Settings . Most likely, this would be the OperationTimeout.
However, it is already quite high by default (2 minutes). The public servers are meant for testing simple examples for QuickOPC only, but anybody in the world somehow feels free to use them for their own testing and create high load there.
Regards
This can be either a timeout returned by the server (in which case it might only be possible to change it on the server side), or one of "our" timeouts. They are described here: kb.opclabs.com/QuickOPC-UA_Timeout_Settings . Most likely, this would be the OperationTimeout.
However, it is already quite high by default (2 minutes). The public servers are meant for testing simple examples for QuickOPC only, but anybody in the world somehow feels free to use them for their own testing and create high load there.
Regards
01 Sep 2021 07:51
Replied by servusintra on topic How to configure a request timeout in EasyUAClient?
We tested the specified pre-release in our project (ASP.NET 5 application). We did not verify that loading the configuration works now. However, we can confirm that the OperationTimeout property is exactly doing what we were looking for in the beginning. It's working on Windows and Linux (Ubuntu 20.04).
This solves our issue. We will now continue our tests and wait for the production-ready release.
Thanks a lot for the great and fast support!
This solves our issue. We will now continue our tests and wait for the production-ready release.
Thanks a lot for the great and fast support!
31 Aug 2021 14:15 - 31 Aug 2021 14:16
Replied by support on topic How to configure a request timeout in EasyUAClient?
Hello,
please try the pre-release version 5.62.0-rev6 from www.nuget.org . It should all work there : 2 ways to do the config file, plus there is the OperationTimeout property: kb.opclabs.com/QuickOPC-UA_Timeout_Settings (the link on that page that should point to the reference documentation does not work yet).
Note: I admit we have *not* tested it on Linux yet. This is because we have found that the issues you have reported had actually to do with running under .NET Core/.NET 5+ . So we fixed that and it now works under .NET Core/.NET 5+ in Windows. Linux tests will come further down the road, but hopefully it will work for you already.
Best regards
please try the pre-release version 5.62.0-rev6 from www.nuget.org . It should all work there : 2 ways to do the config file, plus there is the OperationTimeout property: kb.opclabs.com/QuickOPC-UA_Timeout_Settings (the link on that page that should point to the reference documentation does not work yet).
Note: I admit we have *not* tested it on Linux yet. This is because we have found that the issues you have reported had actually to do with running under .NET Core/.NET 5+ . So we fixed that and it now works under .NET Core/.NET 5+ in Windows. Linux tests will come further down the road, but hopefully it will work for you already.
Best regards
28 Aug 2021 16:12
Replied by support on topic How to configure a request timeout in EasyUAClient?
Hello.
I had a deeper look at this. I can confirm that under Linux, there are problems in both approaches (just with the SDK config file, but also with 2 files). There are different reasons for them, but the end result is that none of them works in version 2021.2.
This should be fully resolved in 2021.3, so 1 file, 2 files, or just the OperationTimeout property - all of that will be there.
Unless the issue is critical for you to be resolved quickly, I'd like you to ask you to wait for version 2021.3. The concrete date is not yet set, though.
Best regards
I had a deeper look at this. I can confirm that under Linux, there are problems in both approaches (just with the SDK config file, but also with 2 files). There are different reasons for them, but the end result is that none of them works in version 2021.2.
This should be fully resolved in 2021.3, so 1 file, 2 files, or just the OperationTimeout property - all of that will be there.
Unless the issue is critical for you to be resolved quickly, I'd like you to ask you to wait for version 2021.3. The concrete date is not yet set, though.
Best regards
28 Jul 2021 16:33
Replied by support on topic How to configure a request timeout in EasyUAClient?
There are multiple timeout values.
If you can connect to the server, the server usually *does* respond properly (this timeout would be the OperationTimeout, which defaults to 60 seconds), by itself. Much more common are communication problems (network infrastructure) - in which case there are timeouts on connecting (e.g. EndpoitnSelectionTimeout), and mechanisms to detect disconnection (some of them are not even timeouts, but rather checking periods for keep messages etc. - it would be several pages to describe all that's involved).
Have a look at these links:
www.opclabs.com/forum/ua-reading-writing-subscriptions/2470-...ore-sessiontimeout-is-hit#6453
www.opclabs.com/forum/ua-reading-writing-subscriptions/2879-sessionetimeout-doesn-t-work#8343
www.opclabs.com/forum/ua-reading-writing-subscriptions/2174-...on-node-size-19-000-bytes#5155
opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html
Best regards
If you can connect to the server, the server usually *does* respond properly (this timeout would be the OperationTimeout, which defaults to 60 seconds), by itself. Much more common are communication problems (network infrastructure) - in which case there are timeouts on connecting (e.g. EndpoitnSelectionTimeout), and mechanisms to detect disconnection (some of them are not even timeouts, but rather checking periods for keep messages etc. - it would be several pages to describe all that's involved).
Have a look at these links:
www.opclabs.com/forum/ua-reading-writing-subscriptions/2470-...ore-sessiontimeout-is-hit#6453
www.opclabs.com/forum/ua-reading-writing-subscriptions/2879-sessionetimeout-doesn-t-work#8343
www.opclabs.com/forum/ua-reading-writing-subscriptions/2174-...on-node-size-19-000-bytes#5155
opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html
Best regards
01 Apr 2020 17:56
Replied by support on topic SessioneTimeout doesn't work?
Hello,
SessionTimeout has a different purpose - please read: opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...Parameters~SessionTimeout.html .
It says (a quote from OPC specification): "Duration. Requested maximum number of milliseconds that a Session should remain open without activity. If the Client fails to issue a Service request within this interval, then the Server shall automatically terminate the Client Session."
What you are looking for might be OperationTimeout (which defaults to 120000 milliseconds). Unfortunately there is no parameter to make it easy to change. It can still be changed, but it requires more work. Please read:
opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html
For convenience, I am attaching the default configuration, so that you can modify it and then use, according to the article.
Best regards
SessionTimeout has a different purpose - please read: opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...Parameters~SessionTimeout.html .
It says (a quote from OPC specification): "Duration. Requested maximum number of milliseconds that a Session should remain open without activity. If the Client fails to issue a Service request within this interval, then the Server shall automatically terminate the Client Session."
What you are looking for might be OperationTimeout (which defaults to 120000 milliseconds). Unfortunately there is no parameter to make it easy to change. It can still be changed, but it requires more work. Please read:
opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html
For convenience, I am attaching the default configuration, so that you can modify it and then use, according to the article.
Best regards
Code:
<?xml version="1.0" encoding="utf-8"?>
<ApplicationConfiguration
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ua="http://opcfoundation.org/UA/2008/02/Types.xsd"
xmlns:s1="http://opcfoundation.org/UA/Sample/Configuration.xsd"
xmlns:s2="http://opcfoundation.org/UA/SDK/COM/Configuration.xsd"
xmlns="http://opcfoundation.org/UA/SDK/Configuration.xsd"
>
<!-- A human readable but not necessarily unique name for the application instance -->
<ApplicationName>Client Application with EasyOPC-UA</ApplicationName>
<!-- A globally unique identifier for the application instance.
This is overridden with the value contained in the application certificate. -->
<ApplicationUri>urn:localhost:OpcLabs:EasyOpc:UA:EasyUAClient</ApplicationUri>
<!-- A globally unique URI for the product (usually assigned by the product vendor) -->
<ProductUri>http://www.opclabs.com/QuickOPC-UA</ProductUri>
<!-- Indicates the type of application (Client, Server or ClientServer). -->
<ApplicationType>Client_1</ApplicationType>
<!-- Specifies security related configuration information -->
<SecurityConfiguration>
<!-- The certificate store and the location of the application instance certificate in the certificate store -->
<ApplicationCertificate>
<!-- The type of store. -->
<StoreType>Directory</StoreType>
<!-- The location of the store.
Windows store must start with LocalMachine, CurrentUser or CurrentService
The name of the store is appended.
Note that the names used in code are difference from what appears in the control panel.
e.g. My == "Personal", Root == "Trusted Root Certification Authorities" -->
<StorePath>%CommonApplicationData%\OPC Foundation\CertificateStores\MachineDefault</StorePath>
<!-- ReSharper disable once CommentTypo -->
<!-- The subject for the certificate
Note that subject names are complex structures. The text that appears here is the CommonName component.
A complete distinguished would be something like: 'CN=UA Sample Client, DC=MACHINENAME'
The first certificate found is used if multiple certificates with the same CommonName exist.
The Thumbprint should be specified if the CommonName does not uniquely identify a certificate. -->
<SubjectName>Client Application with EasyOPC-UA</SubjectName>
<!-- The SHA1 thumbprint for the certificate.
The thumbprint uniquely identifies a certificate.
It should be specified in this file, however, the samples rely on quick and
dirty scripts to create new certificate on each machine. A commercial application
would generate the initial certificate itself and update the thumbprint accordingly -->
<!--<Thumbprint>...</Thumbprint>-->
</ApplicationCertificate>
<!-- The list of certification authorities.
Typical web browsing applications trust any certificate issued by a CA in the
"Trusted Root Certification Authorities" certificate store. However, this approach is
not appropriate for UA because Administrators have no control over the CAs that get
placed in that Root store to facilitate web browsing. This means Administrators must
specify a different store that is used only for UA related CAs and/or they must explicitly
specify the certificate for each trusted certification authority. -->
<TrustedIssuerCertificates>
<StoreType>Directory</StoreType>
<StorePath>%CommonApplicationData%\OPC Foundation\CertificateStores\UA Certificate Authorities</StorePath>
</TrustedIssuerCertificates>
<!-- The list of trusted certificates.
Some UA applications will use self-signed certificates (certificates without a CA)
which means that every application which communicates with it must be configured to
trust it.
Administrators may designate a certificate store that contains trusted UA application
instance certificates (this store should not be the same as the store used for CAs
certificates). Alternately, Administrators may enter the certificates explicitly in
this list.
Note that entries in this list may either reference a certificate in the store or
may contained the entire certificate encoded as base64 data.
-->
<!--<TrustedPeerCertificates>
<StoreType>Windows</StoreType>
<StorePath>LocalMachine\UA Applications</StorePath>
</TrustedPeerCertificates>-->
<TrustedPeerCertificates>
<StoreType>Directory</StoreType>
<StorePath>%CommonApplicationData%\OPC Foundation\CertificateStores\UA Applications</StorePath>
</TrustedPeerCertificates>
<!-- Applications exchange Nonces during the CreateSession. This value specifies the length. Must be >= 32 -->
<NonceLength>32</NonceLength>
<!-- The directory used to store invalid certificates for later review by the administrator. -->
<RejectedCertificateStore>
<StoreType>Directory</StoreType>
<StorePath>%CommonApplicationData%\OPC Foundation\CertificateStores\RejectedCertificates</StorePath>
</RejectedCertificateStore>
</SecurityConfiguration>
<!-- Maps different transports onto a .NET implementation of a WCF Binding
WCF bindings are very complex and have many parameters that can be tweaked. To ensure
interoperability the SDK has defined 3 standard bindings which can be selected with this
element. Developers may define their own Bindings as well provided the inherit from the
Opc.Ua.Binding.BaseBinding type and implement the same constructor as the built-in binding
provide.
Note protocols other than HTTP or UA-TCP are not considered to be interoperable -->
<TransportConfigurations>
<!-- This binding wraps the ANSI C implementation of UA-TCP instead of using the C# implementation. -->
<!--
<TransportConfiguration>
<UriScheme>opc.tcp</UriScheme>
<TypeName>Opc.Ua.NativeStack.NativeStackBinding,Opc.Ua.NativeStackWrapper</TypeName>
</TransportConfiguration>
-->
<!-- This binding uses the WCF binary encoded XML over TCP -->
<TransportConfiguration>
<UriScheme>net.tcp</UriScheme>
<TypeName>Opc.Ua.Bindings.UaSoapXmlOverTcpBinding</TypeName>
</TransportConfiguration>
<!--
-->
<!-- This binding uses the WCF binary encoded XML over PIPE -->
<TransportConfiguration>
<UriScheme>net.pipe</UriScheme>
<TypeName>Opc.Ua.Bindings.UaSoapXmlOverPipeBinding</TypeName>
</TransportConfiguration>
<!--
-->
</TransportConfigurations>
<!-- Specifies quotas used to by the transport layer -->
<TransportQuotas>
<!-- The default timeout in milliseconds for operations (used by clients) -->
<OperationTimeout>120000</OperationTimeout>
<!-- The maximum length for a string value in any message -->
<MaxStringLength>1048576</MaxStringLength>
<!-- The maximum length for a byte string value in any message -->
<MaxByteStringLength>4194304 </MaxByteStringLength>
<!-- The maximum length for any array in a message.
Note that some protocols do not distinguish between bytes and arrays.
In these cases the binding will choose the larger of
MaxByteStringLength or MaxArrayLength-->
<MaxArrayLength>655350</MaxArrayLength>
<!-- The maximum size of any message -->
<MaxMessageSize>4194304</MaxMessageSize>
<!-- The maximum buffer size
This value controls how big a block of memory the transport layer allocates.
Setting this value to a large value will reduce performance and use a lot of RAM -->
<MaxBufferSize>65535</MaxBufferSize>
<!-- The lifetime of a SecureChannel in milliseconds.
This specifies how long the server will keep a broken channel around while waiting
for a client to reconnect.
Not used by HTTP or .NET TCP bindings -->
<ChannelLifetime>300000</ChannelLifetime>
<!-- The lifetime of a SecurityToken in milliseconds.
This specifies how long a security token can be used without renewal. -->
<SecurityTokenLifetime>3600000</SecurityTokenLifetime>
</TransportQuotas>
<!-- This element is only required for Client and ClientServer applications -->
<ClientConfiguration>
<!-- The default timeout for new sessions -->
<DefaultSessionTimeout>60000</DefaultSessionTimeout>
<!-- The well-known URLs for the local discovery servers
URLs are tested in the order they appear in this list. -->
<WellKnownDiscoveryUrls>
<ua:String>opc.tcp://{0}:4840</ua:String>
<ua:String>http://{0}:52601/UADiscovery</ua:String>
<ua:String>http://{0}/UADiscovery/Default.svc</ua:String>
</WellKnownDiscoveryUrls>
<!-- EndpointDescriptions for system wide discovery servers -->
<DiscoveryServers></DiscoveryServers>
<!-- The file used to save the EndpointDescriptions for servers known to the Client -->
<EndpointCacheFilePath>OpcLabs.EasyOpc.UA.EasyUAClient.Endpoints.xml</EndpointCacheFilePath>
<!-- The minimum subscription lifetime.
This ensures subscriptions are not set to expire too quickly. The requested lifetime count
and keep alive count are calculated using this value and the request publishing interval -->
<MinSubscriptionLifetime>10000</MinSubscriptionLifetime>
</ClientConfiguration>
<Extensions>
</Extensions>
<!--
Masks supported by the trace feature.
Servers will detect changes within 5 seconds.
Do not output any messages.
None = 0x0;
Output error messages.
Error = 0x1;
Output informational messages.
Information = 0x2;
Output stack traces.
StackTrace = 0x4;
Output basic messages for service calls.
Service = 0x8;
Output detailed messages for service calls.
ServiceDetail = 0x10;
Output basic messages for each operation.
Operation = 0x20;
Output detailed messages for each operation.
OperationDetail = 0x40;
Output messages related to application initialization or shutdown
StartStop = 0x80;
Output messages related to a call to an external system.
ExternalSystem = 0x100;
Output messages related to security
Security = 0x200;
-->
<TraceConfiguration>
<OutputFilePath>%LocalApplicationData%\OPC Labs\Logs\EasyUAClient.log.txt</OutputFilePath>
<DeleteOnLoad>true</DeleteOnLoad>
<!-- Show Only Errors -->
<!-- <TraceMasks>1</TraceMasks> -->
<!-- Show Only Security and Errors -->
<!-- <TraceMasks>513</TraceMasks> -->
<!-- Show Only Security, Errors and Trace -->
<TraceMasks>515</TraceMasks>
<!-- Show Only Security, COM Calls, Errors and Trace -->
<!-- <TraceMasks>771</TraceMasks> -->
<!-- Show Only Security, Service Calls, Errors and Trace -->
<!-- <TraceMasks>523</TraceMasks> -->
<!-- Show Only Security, ServiceResultExceptions, Errors and Trace -->
<!-- <TraceMasks>519</TraceMasks> -->
</TraceConfiguration>
<!-- Enables the hi-res clock for the process to allows for shorter (<100ms) publishing and sampling intervals. -->
<!-- QueryPerformanceCounter does not work on all multi-core machines so enabling the hi-res clock by default is not recommended. -->
<DisableHiResClock>true</DisableHiResClock>
</ApplicationConfiguration>
18 May 2019 14:03
Replied by support on topic block in CallMethod
Alright, in order to figure out the issue with UserIdentity, I would have to see all parts of the code involved. But I guess that's not important at the moment, because you *somehow* got it running (although in a weird manner). Let's focus now on the CallMethod block.
Have you tried the same method with some other OPC UA client, and what were the results? The first thing I want to determine is whether the "block" isn't actually on the server. If it were on the server side, the CallMethod will actually return, but after quite long time (I think the default is 10 minutes, for OperationTimeout on the client side).
And that's another test I want you to make please. Please wait for approx. 11 minutes., and check whether the function returns or not. If it then returns with an error, what is the error?
Best regards
Have you tried the same method with some other OPC UA client, and what were the results? The first thing I want to determine is whether the "block" isn't actually on the server. If it were on the server side, the CallMethod will actually return, but after quite long time (I think the default is 10 minutes, for OperationTimeout on the client side).
And that's another test I want you to make please. Please wait for approx. 11 minutes., and check whether the function returns or not. If it then returns with an error, what is the error?
Best regards
05 Apr 2019 06:40
Replied by support on topic In some situations, 'BrowseDataNodes' does not complete within 20 seconds.
Hello.
I will start from the end of your report - the part about bxsdk32.dll. This seems related to a 3-rd party product that is included in QuickOPC and takes of "virtualization" of some dependency files (such as UA Certifiate Generator), so that they do not have to be pre-installed on the machine. We have encountered problems with this library from time to time (seldom, but still). So, first thing I'd suggest to do, is to make sure that the "bxsdk32.dll" problem is not causing further issues down the road. To do, so, there is a way to turn off this "prerequisite boxing". Instructions are here: kb.opclabs.com/How_to_disable_prerequisites_boxing .
Only if the problem persists then:
Yes, allocate more than 20 seconds. In fact, for the worst case, we need to allocate more than 10 minutes, because in the rare case, this is the default value of the longest timeout in effect (OperationTimeout). And, we need to know whether BrowseDataNode returns then - and if it does return with an error (exception), then the details of that error. That may bring the information needed already. If not, we can proceed by obtaining detailed traces and logs (do not do that now, I would send instructions if we come that far).
Best regards
I will start from the end of your report - the part about bxsdk32.dll. This seems related to a 3-rd party product that is included in QuickOPC and takes of "virtualization" of some dependency files (such as UA Certifiate Generator), so that they do not have to be pre-installed on the machine. We have encountered problems with this library from time to time (seldom, but still). So, first thing I'd suggest to do, is to make sure that the "bxsdk32.dll" problem is not causing further issues down the road. To do, so, there is a way to turn off this "prerequisite boxing". Instructions are here: kb.opclabs.com/How_to_disable_prerequisites_boxing .
Only if the problem persists then:
Yes, allocate more than 20 seconds. In fact, for the worst case, we need to allocate more than 10 minutes, because in the rare case, this is the default value of the longest timeout in effect (OperationTimeout). And, we need to know whether BrowseDataNode returns then - and if it does return with an error (exception), then the details of that error. That may bring the information needed already. If not, we can proceed by obtaining detailed traces and logs (do not do that now, I would send instructions if we come that far).
Best regards
09 Mar 2019 16:23
Replied by support on topic Unable to reconnect to OPC Server
Hello,
thank you for the files.
I have some questions:
1. Are you running on .NET Core, or .NET Framework? If on .NET Core, which operating system? I have to ask because you have also not provided the LogEntry notifications from the start of the program, which contain all of this. [note to myself: this question relates to the appearance of BadNotConnected status code]
2. Please confirm that you are running QuickOPC version 2018.3. Again that would be in the log entries at the beginning, but I do not have them.
3. It seems that each notification is written exactly 5 times in the files. I can "filter it" out, but I just want to not whether you are aware of it, and why is it. Aren't you hooking multiple times to the same static event?
4. When the logs were taken, were you running with debugger attached, or without?
5. Are you logging just Warning/Error kinds of notifications in LogEntry, or are Information notifications also included? (I do not see them, so I do not know whether they were not generated, or whether they were generated but not included in the log file).
6. Have you tried to wait very long (such as over 20 minutes) to see if there is still no recovery? What happens then? The reason I am asking this is that there are various timeout periods, and most of them are quite short, but the default for the so-called OperationTimeout is 10 minutes I believe, so under rare circumstances this can slow down things. I am almost sure that this is not the case here, but want to verify it anyway.
[Note to myself for possible next troubleshooting step, depending on the answers: deadlock analysis, extended tracing + wireshark]
thank you for the files.
I have some questions:
1. Are you running on .NET Core, or .NET Framework? If on .NET Core, which operating system? I have to ask because you have also not provided the LogEntry notifications from the start of the program, which contain all of this. [note to myself: this question relates to the appearance of BadNotConnected status code]
2. Please confirm that you are running QuickOPC version 2018.3. Again that would be in the log entries at the beginning, but I do not have them.
3. It seems that each notification is written exactly 5 times in the files. I can "filter it" out, but I just want to not whether you are aware of it, and why is it. Aren't you hooking multiple times to the same static event?
4. When the logs were taken, were you running with debugger attached, or without?
5. Are you logging just Warning/Error kinds of notifications in LogEntry, or are Information notifications also included? (I do not see them, so I do not know whether they were not generated, or whether they were generated but not included in the log file).
6. Have you tried to wait very long (such as over 20 minutes) to see if there is still no recovery? What happens then? The reason I am asking this is that there are various timeout periods, and most of them are quite short, but the default for the so-called OperationTimeout is 10 minutes I believe, so under rare circumstances this can slow down things. I am almost sure that this is not the case here, but want to verify it anyway.
[Note to myself for possible next troubleshooting step, depending on the answers: deadlock analysis, extended tracing + wireshark]
15 Jun 2018 12:56
Replied by support on topic Possible Session Timeout before SessionTimeout is hit
Hello,
this will probably be the OperationTimeout which is not not yet configurable by the parameters, but by a different procedure.
See opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html .
And some related old posts e.g. Best regards
this will probably be the OperationTimeout which is not not yet configurable by the parameters, but by a different procedure.
See opclabs.doc-that.com/files/onlinedocs/QuickOpc/Latest/User%2...plication%20Configuration.html .
And some related old posts e.g. Best regards
12 Mar 2018 15:10
Replied by support on topic BadSecureChannelClosed
Hello,
I also need to know the following:
1. Which version and build of QuickOPC you are using.
2. In the duplicate posting you made, you mention the fact that ReadMultipleValues blocks. If it blocks, it cannot return an error. Are we then discussing two issues here? - one that the function does not return, and the other that you get the error that does not recover? Please clarify.
3. When you do get the BadSecureChannelClosed, is that from ReadMultipleValues, or is it reported through the data change notification (or both?)
4. For complete analysis, can you please wait a bit more than 10 minutes on ReadMultipleValues to see whether it truly does not return even after this long time. The reason for it is that one of the timeouts involved (OperationTimeout) defaults to 10 minutes.
5. Very important: When you get into the situation where the application does not recover, start a second instance of the same application, and try to connect. Do you also get an error, or does the second instance work well?
Thank you
I also need to know the following:
1. Which version and build of QuickOPC you are using.
2. In the duplicate posting you made, you mention the fact that ReadMultipleValues blocks. If it blocks, it cannot return an error. Are we then discussing two issues here? - one that the function does not return, and the other that you get the error that does not recover? Please clarify.
3. When you do get the BadSecureChannelClosed, is that from ReadMultipleValues, or is it reported through the data change notification (or both?)
4. For complete analysis, can you please wait a bit more than 10 minutes on ReadMultipleValues to see whether it truly does not return even after this long time. The reason for it is that one of the timeouts involved (OperationTimeout) defaults to 10 minutes.
5. Very important: When you get into the situation where the application does not recover, start a second instance of the same application, and try to connect. Do you also get an error, or does the second instance work well?
Thank you
Time to create page: 0.415 seconds