OPC Studio User's Guide and Reference
TestingInsecure Property (EasyUAServerEngineParameters)



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA.Engine Namespace > EasyUAServerEngineParameters Class : TestingInsecure Property
Parameters for testing. These parameters are not secure!
Syntax
'Declaration
 
<NotNullAttribute()>
Public Shared ReadOnly Property TestingInsecure As EasyUAServerEngineParameters
'Usage
 
Dim value As EasyUAServerEngineParameters
 
value = EasyUAServerEngineParameters.TestingInsecure
[NotNull()]
public static EasyUAServerEngineParameters TestingInsecure {get;}
[NotNull()]
public:
static property EasyUAServerEngineParameters^ TestingInsecure {
   EasyUAServerEngineParameters^ get();
}

Property Value

An instance of EasyUAServerEngineParameters configured for testing purposes, with many security features disabled for ease of testing.

The value of this property cannot be null (Nothing in Visual Basic).

Remarks

This property returns a set of engine parameters that are intentionally insecure, with settings such as accepting any certificate. This is useful for development and testing environments where security is not a concern and ease of setup is prioritized.

It is strongly recommended not to use these parameters in any production environment as they can expose the server to significant security vulnerabilities.

With these settings, the server accepts any certificate.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also