NodeOPCUA API Documentation
    Preparing search index...

    Interface OPCUAServerEndPointOptions

    interface OPCUAServerEndPointOptions {
        certificateChain: DER[];
        certificateManager: ICertificateStore;
        defaultSecureTokenLifetime?: number;
        host?: string;
        maxConnections?: number;
        objectFactory?: unknown;
        port: number;
        privateKey: PrivateKey;
        serverInfo: ApplicationDescription;
        timeout?: number;
        transportSettings?: IServerTransportSettings;
    }
    Index

    Properties

    certificateChain: DER[]

    the DER certificate chain

    certificateManager: ICertificateStore
    defaultSecureTokenLifetime?: number

    the default secureToken lifetime @default=60000

    host?: string

    the tcp host

    maxConnections?: number

    the maximum number of connection allowed on the TCP server socket

    20
    
    objectFactory?: unknown
    port: number

    the tcp port

    privateKey: PrivateKey

    privateKey

    timeout?: number

    the timeout for the TCP HEL/ACK transaction (in ms)

    30000
    
    transportSettings?: IServerTransportSettings