USER MANUALS

WEBCONTAINER_META_INF

Description

The stored procedure WEBCONTAINER_META_INF returns the configuration of the web container of Denodo.

Syntax

WEBCONTAINER_META_INF ()

The procedure returns only one row with the following fields:

  • https_enabled: Indicates if HTTPS is active

  • http_port: HTTP port of the server

  • https_port: HTTPS port of the server

Examples

Example 1

CALL WEBCONTAINER_META_INF();

Example 2

SELECT *
FROM WEBCONTAINER_META_INF();

These two examples show two different ways of invoking WEBCONTAINER_META_INF: one with CALL and another with SELECT. Both ways are equivalent. The difference is that if you invoke WEBCONTAINER_META_INF from a SELECT statement, you can combine the result with another view although usually, you will not need to do this. See Invoking Denodo Stored Procedures for more details about how to invoke the stored procedures of Denodo.

Privileges Required

Any user can invoke this procedure.

Add feedback