Documentation
    Preparing search index...

    Interface XmlRpcClientOptions

    Configuration options required to instantiate the XML-RPC client.

    interface XmlRpcClientOptions {
        host: string;
        path: string;
        port: number;
        secure?: boolean;
    }
    Index

    Properties

    Properties

    host: string

    The hostname or IP address of the target server.

    path: string

    The endpoint path for remote procedures (e.g. '/xmlrpc/2/common').

    port: number

    The connection port (e.g. 80 or 443).

    secure?: boolean

    Whether to use a secure HTTPS connection. Defaults to false.