ServerConfig
Defines how MSSQL UDTs connect to the WDS API Server, including base URL and optional credentials/HTTPS settings.
Name | Type | Description |
---|---|---|
Url | String | Required. WDS API Server URL |
Initialization String Format
An instance can be initialized with a connection string of the following format: wds://user:password@host:port?https=false
The wds schema is required for this connection string
The user and password parameters are optional and should be provided only if authentication is required.
The https parameter is optional. The default value is false. For production environments, it is strongly recommended to use HTTPS.
Examples
Creating a new instance initialized from a string:
DECLARE @serverConfig wds.ServerConfig = 'wds://localhost:2807';