ServerStatus

This function checks WDS API Server status and shows the results in the form of a table

Syntax

wds.ServerStatus( serverConfig )

Arguments

Name Type Description
serverConfig ServerConfig Required. API server configuration

Return type

TABLE (Name NVARCHAR(255), Value NVARCHAR(MAX), Description NVARCHAR(MAX))

Return value

A table with the following status indicators:

Name Value Description
Ready True of False HTTP Response code with a reason phrase

Examples

Checking the status of a WDS API Server running on localhost with port 2807 (the default one)
DECLARE @serverConfig wds.ServerConfig = 'wds://localhost:2807';
SELECT * FROM wds.ServerStatus(@serverConfig)

Please rotate your device to landscape mode

This documentation is specifically designed with a wider layout to provide a better reading experience for code examples, tables, and diagrams.
Rotating your device horizontally ensures you can see everything clearly without excessive scrolling or resizing.

Return to Web Data Source Home