This OPC Server is designed to be default OPC UA Server when opening the OPC UA Compliance Test Tool and uses an address-space that matches the design of the UACTT.
It is built with the Quickstart application template (OPC Server) and uses the OPC Foundation UA .NET Standard Library SDK. Therefore it supports the opc.tcp and http transports. There is a .Net 4.6 based server with UI and a console version of the server which runs on any OS supporting .NET Standard Library.
- Open the solution UA Reference.sln with VisualStudio.
- Choose the project
Reference serverin the Solution Explorer and set it with a right click asStartup Project. - Hit
F5to build and execute the sample.
This section describes how to run the ConsoleReferenceServer.
Please follow instructions in this article to setup the dotnet command line environment for your platform.
- Once the
dotnetcommand is available, navigate to the root folder in your local copy of the repository and executedotnet restore. This command calls into NuGet to restore the tree of dependencies.
- Open a command prompt.
- Now navigate to the folder SampleApplications/Workshop/Reference/ConsoleReferenceServer.
- To run the server sample type
dotnet run. The server is now running and waiting for the connection of the UACTT.
The reference server always rejects new client certificates and requires a few UACTT certificates in approbriate folders. The console server certificates are stored in OPC Foundation/CertificateStores while the Windows .Net 4.6 server stores the certificates in %CommonApplicationData%\OPC Foundation\CertificateStores. %CommonApplicationData% maps to the path set by the environment variable ProgramData on Windows.
Under CertificateStores, the following stores contain certificates under certs, CRLs under crl or private keys under private.
- MachineDefault contains the reference server public certificate and private key.
- RejectedCertificates contains the rejected client certificates. To trust a client certificate, copy the rejected certificate to the UA Applications/certs folder.
- UA Applications contains trusted client certificates.
- UA Certificate Authorities contains trusted CA certificates and CRLs.
Copy the certificates for testing with the UACTT to the following stores:
- UA Applications/certs: expired.der, notyetvalid.der, opcuactt.der, opcuactt_incorrectip.der, cttuser.der
- UA Certificate Authorities/certs: opcuactt_ca.der
- UA Certificate Authorities/crl: revocation_list_opcuactt_ca.crl
Download and install the OPC UA Compliance Test Tool.
Note: Access to the UACTT is granted to OPC Foundation Corporate Members.
A sample configuration for the UACTT Version 1.02.336.244 can be found in UAReferenceServer.ctt.xml. The reference server is tested against the Standard UA Server profile. It is recommended to run the server as retail build with disabled logging, to avoid side effects due to timing artifacts when log entries are written to a disk drive.
- Project: Reference Server
- File: ReferenceNodeManager.cs
- Method: CreateAddressSpace
- Project: Opc.Ua.Server
- File: StandardServer.cs