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.
EasyUAClient - browsing, user authentication with a certificate, etc.
- Please confirm that you get the timeout *always* (no operation succeeds)
- Do you get truly get the timeout after 60 seconds of waiting, or in substantially shorter or longer time?
- Please confirm that there are no additional pop-up message boxes or other visible activity during the connection attempt.
- It is somewhat weird that you are connecting to a host named DiscoveryServer, with just a port name and no path in the URL (although in principle it is possible; and common with embedded UA servers). Can you disclose what OPC UA server (vendor, protocol, product name, version...) you are connecting to?
One more thing: Apparently you still use "xxx" and "yyy" as username and password in the UAEndpointDescriptor. As I described earlier, this is normally not used with OPC UA. Unless you really know what you are doing and why need (and you also use it the same way with other OPC clients), remove it, and only keep the username and password in the UserIdentity.
Best regards
Please Log in or Create an account to join the conversation.
thanks for your answer. We set SecurityMode as suggested with some little corrections on previous initialization parts, now authentication seems working.
We tried to read a node value but it produces a Timeout Exception (same error with "easyUAClient.BrowseDataNodes(...)"). Solution seems easy, but we can't figured out until now.
Below the code:
We also attach the log file, made hooking the EasyUAClient.LogEntry event as you suggested.
Thanks in advance
Please Log in or Create an account to join the conversation.
But. I think I know the reason already. You have AllowedMessageSecurityModes = UAMessageSecurityModes.None, which means that NO security modes are allowed - therefore it will always fail. You probably wanted to use AllowedMessageSecurityModes = UAMessageSecurityModes.SecurityNone instead (or, to allow all modes, use AllowedMessageSecurityModes = UAMessageSecurityModes.All). The enumeration is defined as follows (shortened):
Please Log in or Create an account to join the conversation.
first of all thanks for your quick answers. I tried to connect my server as you suggested, but I get the following InnerException, wrapped in the standard "An unhandled exception of type 'OpcLabs.EasyOpc.UA.UAException' occurred in OpcLabs.EasyOpcUA.dll":
"Cannot select the best (any) endpoint for OPC-UA client session. No suitable endpoint has been found. The server returned 5 endpoints.\r\n There are several configurable settings that influence which endpoints are eligible for selection, such as the endpoint selection policy, and also parameters that influence how thorough checks of the information returned by the server are made. You may need to change the endpoint selection policy, or the additional parameters, in order to be able to connect. If you are unsure about what is causing all endpoints to be rejected, analyze the log entries generated by the component."
Trying to connect with UA Sample Client (under Start -> OPC Foundation-> UA SDK 1.01 -> Testing), I'm connecting with following parameters (see image below):
I'm pointing off that I'm allowed to choose any SecurityMode and SecurityPolicy, but the only one works at the moment is the default (None - None - Binary).
Below the code we are using (previous trials we have done are commented)
I think our configuration matches many allowed policies, so returned endpoints are more than one (5 in error message) and the client isn't able to choose the right for us.
Does it exists a configuration (or a method call) can solve this problem?
Thanks in advance,
Giuseppe
Please Log in or Create an account to join the conversation.
If you want to write something like a Web service, you will have to resolve somehow how to transform this event-driven approach (where data come in at any moment) to a model where it is the Web service consumer that asks for them actively. However anything in this area highly depends on your requirements which I do not know in detail at the moment.
Best regards
Please Log in or Create an account to join the conversation.
Best regards
Please Log in or Create an account to join the conversation.
To send user information to the server I customize the code sample as follow:
but I get this error:
Message: OPC-UA service result - Endpoint does not supported the user identity type provided. .....
ServiceResult: {BadUserAccessDenied}
I suppose is also because I didn't specify the: "Security mode, policy and Encoding", how can send this info before the
Thank you
Please Log in or Create an account to join the conversation.
For user authentication with a certificate.
Please Log in or Create an account to join the conversation.
1. Set server (NOT localhost and standard demo configuration) address/ endpoint like opc.tcp://yyyy.zzz.xx:9999
I believe this is already demonstrated in the browsing example - the endpoint URL can be passed as first parameter to most our methods (it implicitly converts to UAEndpointDescriptor which contains all the details). For example, with subscriptions:
Note that our API is connectionless - you do not explicitly open and close connections, that is taken care of internally for you.
Please Log in or Create an account to join the conversation.
You can find examples of code-based (i.e. not a user interface) UA browsing in the C# examples solution, installed with the product and available from the Start menu. When you open that solution in Visual Studio, and navigate (in Solution Explorer) under Console/UADocExamples, you can pick e.g. the _EasyUAClient.BrowseNodes.Main.cs file; the core of the example looks like this:
Other neighboring files show different browsing methods, such as BrowseVariables, BrowseObjects, etc. There is also a corresponding example in VB.NET in a separate solution with Visual Basic projects.
Note that there is no "single" starting node (no root) in OPC UA. Here we are starting with the "Server" node (UAObjectIds.Server); it would be more typical to start with UAObjectIds.Objects, but really that depends on your needs.
Best regards
Please Log in or Create an account to join the conversation.