WEB Server list
WEB Server list : Collection
Parámetros | Tipo | Descripción | |
---|---|---|---|
Resultado | Collection | ← | Collection of the available Web Server objects |
Historia
Lanzamiento | Modificaciones |
---|---|
18 R3 | Añadidos |
Descripción
El comando WEB Server list
devuelve una colección de todos los objetos del servidor Web disponibles en la aplicación 4D .
Queremos saber cuántos servidores web en funcionamiento hay disponibles:
- un servidor web para la base de datos del host (servidor web por defecto)
- un servidor web para cada componente.
Todos los servidores Web disponibles son devueltos por el comando WEB Server list
, se estén ejecutando o no.
El objeto servidor web por defecto es cargado automáticamente por 4D al inicio. On the other hand, each component Web server that you want to use must be instantiated using the
WEB Server
command.
You can use the .name property of the Web server object to identify the project or component to which each Web server object in the list is attached.
Ejemplo
Puede utilizar la propiedad .name del objeto servidor web para identificar el proyecto o componente al que está unido cada objeto servidor web de la lista.
var $wSList : Collection
var $vRun : Integer
$wSList:=WEB Server list
$vRun:=$wSList.countValues(True;"isRunning")
ALERT(String($vRun)+" web server(s) running on "+String($wSList.length)+" available.")