-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues re interoperability with common OPCUA clients #326
Comments
Are you connecting with encrypted connections or not? Best to try None/None first to see if the issues are around certs before anything else. Clients and servers might be set up to reject certs, e.g. trust_client_certs set to false in the server will reject a client cert it doesn't recognize to its pki/rejected folder as a precaution. If you know your server is safe for anonymous clients, you can set that to true. For other limits/settings if there are particular things that cause issue, can you list them here? |
Yes, I have been using None/None only so far, really I took another stab at diagnosing and here are my findings UAExpertPotentially related default settings:
Without any changes to default limits:
After changing send/receive buffer to 131,072 per this comment: After updating UAExpert settings:
65,536 -> 131,072 Prosys and UAExpert connect successfully UpdateAfter poking UAExpert a bit more, I have found that this setting is all that needed to be changed ConclusionIt seems like the default settings are okay for a number of client applications It seems like, in this case, the easiest solution is to simply increase the related limits on UAExpert I realize that, to an extent, this is somewhat unavoidable The error messages in applications such as UAExpert are... at times, not very helpful
Additionally, I worry that customers might try to use clients that don't provide advanced configuration For example, Prosys works now that I increased some of the limits, but it does not allow configuration to the same level as UAExpert If such changes end up being required, but the customer requires the usage of an application such as Prosys, we might be limited to responding with something like: "Sorry, too bad" I have no idea if more "adaptive" limits are practical, but that's the first thing that comes to mind for me But, in short, I wonder if it might make sense to provide an option like: Anyway, I think I'm going to take aforementioned "client might require configuration" for the time being and see how that goes |
hi, recently i used this project to construct a opcua server, with the test, i found some problem and i resolved them, i want to participate this project,look forward to your reply |
I have used multiple OPCUA clients to aid in the development of a server application utilizing this library.
I have been able to connect all of the clients I have tested to the OPCUA server
These include:
Unified Automation UaExpert: Link
Matrikon OPC UA Explorer: Link
Prosys OPC UA Browser: Link
Each client seems to require tweaking on the OPCUA server side in order to connect successfully
e.g. a configured
server.conf
fileI think I recall UAExpert not requiring as much/any tweaking, but I'm not certain.
As far as I can tell, this comes down to the limits advertised/supported by the OPCUA server being incompatible with the aforementioned OPCUA clients.
At least for the most part
Some clients seemingly have issues connecting due to the configuration of the Discovery endpoint on the server side, etc.
While I have been able to determine what configurations work and produce relevant sample
server.conf
configurations for the aforementioned client applications, it feels a bit restrictive to have an OPCUA server instance that only works with a limited set of clients.It would be nice if the server could be made more flexible with the limitations so that it can support connections from a range of client application.
Perhaps this is not entirely uncommon in the context of the OPCUA ecosystem, but I figured I'd open an issue it is something that can be resolved, as it seems like a pretty big pain point to me.
The text was updated successfully, but these errors were encountered: