diff --git a/docs/Notes/updates.md b/docs/Notes/updates.md index eb2b3294ff40e9..c567d7ae18b041 100644 --- a/docs/Notes/updates.md +++ b/docs/Notes/updates.md @@ -15,6 +15,12 @@ Read [**What’s new in 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/), th - New "trim" commands to remove leading and trailing spaces from a string: [`Trim`](../commands/trim.md), [`Trim start`](../commands/trim-start.md), and [`Trim end`](../commands/trim-end.md). - [`Num`](../commands/num.md) and [`String`](../commands/string.md) commands have been updated to support conversions in different bases (radix). +#### Behavior changes + +- Web services (SOAP): when [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled, web services now run in [**preemptive processes**](../Develop/preemptive.md) in compiled mode. Make sure your SOAP code is thread-safe. +- Web server: the support of deprecated `4DSYNC/` and `4DCGI/` URLs is removed. No specific processing is done on these URLs anymore. +- Web user sessions are now returned by [`Process activity`](../commands/process-activity.md). + ## 4D 20 R10 diff --git a/docs/WebServer/authentication.md b/docs/WebServer/authentication.md index c052ad9ce0f11c..9813e9681b3ba2 100644 --- a/docs/WebServer/authentication.md +++ b/docs/WebServer/authentication.md @@ -82,7 +82,7 @@ The `On Web Authentication` database method is automatically called when a reque The `On Web Authentication` database method is therefore called: - when the web server receives a URL requesting a resource that does not exist -- when the web server receives a URL beginning with `4DACTION/`, `4DCGI/`... +- when the web server receives a URL beginning with `4DACTION/` - when the web server receives a root access URL and no home page has been set in the Settings or by means of the [`WEB SET HOME PAGE`](../commands-legacy/web-set-home-page.md) command - when the web server processes a tag executing code (e.g `4DSCRIPT`) in a semi-dynamic page. diff --git a/docs/WebServer/preemptiveWeb.md b/docs/WebServer/preemptiveWeb.md index 309223677ef1ce..05495092d00b78 100644 --- a/docs/WebServer/preemptiveWeb.md +++ b/docs/WebServer/preemptiveWeb.md @@ -27,10 +27,11 @@ The following table indicates whether the preemptive mode is used or is availabl - REST Server: handles [ORDA data model class functions](../REST/ClassFunctions.md) - Web Server: handles [web templates](templates.md), [4DACTION and database methods](httpRequests.md) - Web Service Server: handles SOAP requests -- ***web setting*** means that the preemptive mode depends on a setting value: - - when [**Scalable sessions**](sessions.md#enabling-web-sessions) option is selected, the preemptive mode is automatically used for web processes. - - otherwise, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account. - - regarding Web service processes (server or client), preemptive mode is supported at method level. You just have to select "Can be run in preemptive processes" property for published SOAP server methods (see [Publishing a Web Service with 4D](https://doc.4d.com/4Dv20/4D/20.2/Publishing-a-Web-Service-with-4D.300-6750334.en.html)) or proxy client methods (see [Subscribing to a Web Service in 4D](https://doc.4d.com/4Dv20/4D/20.2/Subscribing-to-a-Web-Service-in-4D.300-6750336.en.html)) and make sure they are confirmed thread-safe by the compiler. +- ***web setting*** means that the preemptive mode depends on the [**scalable sessions**](sessions.md#enabling-web-sessions) status: + - if scalable sessions are enabled, the preemptive mode is automatically used for web and web service processes. + - if scalable sessions are not enabled: + - for web processes, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account. + - for web service processes (server or client), preemptive mode is supported at method level. @@ -55,7 +56,7 @@ All 4D code executed by the web server must be thread-safe if you want your web * [ORDA data model class functions](../REST/ClassFunctions.md) called via REST -For each of these methods and code parts, the compiler will check if the thread-safety rules are respected, and will return errors in case of issues. For more information about thread-safety rules, please refer to the *Writing a thread-safe method* paragraph in the *Processes* chapter of the [4D Language Reference](https://doc.4d.com) manual. +For each of these methods and code parts, the compiler will check if the [thread-safety rules are respected](../Develop/preemptive.md#writing-a-thread-safe-method), and will return errors in case of issues. ## Thread-safety of 4D web code @@ -78,7 +79,6 @@ Of course, the code executed by these methods must also be thread-safe. The following 4D Web Server URLs are thread-safe and can be used in preemptive mode: * *4daction/* (the called project method must also be thread-safe) -* *4dcgi/* (the called database methods must also be thread-safe) * *4dwebtest/* * *4dblank/* * *4dstats/* diff --git a/docs/WebServer/sessions.md b/docs/WebServer/sessions.md index 3eed97d6ef9d49..1d969f4f71c3c4 100644 --- a/docs/WebServer/sessions.md +++ b/docs/WebServer/sessions.md @@ -16,7 +16,7 @@ Web sessions allow to: Web sessions are used for: -- [Web applications](gettingStarted.md) sending http requests, +- [Web applications](gettingStarted.md) sending http requests (including [SOAP Web services](../commands/theme/Web_Services_Server.md) and [/4DACTION](../WebServer/httpRequests.md#4daction) requests), - calls to the [REST API](../REST/authUsers.md), which are used by [remote datastores](../ORDA/remoteDatastores.md) and [Qodly forms](qodly-studio.md). diff --git a/docs/WebServer/webServerConfig.md b/docs/WebServer/webServerConfig.md index c09b3766b6f13d..8d60651e46fbe1 100644 --- a/docs/WebServer/webServerConfig.md +++ b/docs/WebServer/webServerConfig.md @@ -642,9 +642,6 @@ This option enables the preemptive mode for your application's web server code w The following settings are still supported but rely on deprecated features or technologies. It is usually recommended to keep default values. -#### Allow database access through 4DSYNC URLs - -This option controls the support of HTTP synchronization requests containing deprecated */4DSYNC* URLs. #### Session IP Address Validation diff --git a/docs/commands-legacy/on-web-authentication-database-method.md b/docs/commands-legacy/on-web-authentication-database-method.md index 0f551d327be61f..1909bd3f94011f 100644 --- a/docs/commands-legacy/on-web-authentication-database-method.md +++ b/docs/commands-legacy/on-web-authentication-database-method.md @@ -59,6 +59,7 @@ Let’s take the example of an Intranet connection. Suppose that the IP address | http://123.45.67.89/Customers | /Customers | | http://123.45.67.89/Customers/Add | /Customers/Add | | 123.45.67.89/Do\_This/If\_OK/Do\_That | /Do\_This/If\_OK/Do\_That | + * **Header and Body of the HTTP request** The second parameter (*$http*) is the header and the body of the HTTP request sent by the Web browser. Note that this information is passed to your **On Web Authentication database method** as it is. Its contents will vary depending on the nature of the Web browser which is attempting the connection. If your application deals with this information, it is up to you to parse the header and the body. @@ -71,7 +72,7 @@ If your application deals with this information, it is up to you to parse the he The $ipBrowser parameter receives the IP address of the browser’s machine. This information can allow you to distinguish between Intranet and Internet connections. **Note:** 4D returns IPv4 addresses in a hybrid IPv6/IPv4 format written with a 96-bit prefix, for example ::ffff:192.168.2.34 for the IPv4 address 192.168.2.34\. For more information, refer to the *Support of IPv6* section. * **Server IP address** -The $ipServer parameter receives the IP address used to call the Web server. 4D since version 6.5 allows for multi-homing, which allows you to exploit machines with more than one IP address. For more information, please refer to the section *Web Server Settings* +The $ipServer parameter receives the IP address used to call the Web server. 4D allows for multi-homing, which allows you to exploit machines with more than one IP address. For more information, please refer to the section *Web Server Settings* * **User Name and Password** The $user and $pw parameters receive the user name and password entered by the user in the standard identification dialog box displayed by the browser. This dialog box appears for each connection, if a password management option has been selected in the Database Settings dialog box (see section *Connection Security*). @@ -99,14 +100,11 @@ The On Web Authentication database method is automatically called, regardless of The On Web Authentication database method is therefore called in the following cases: * when 4D receives a URL beginning with *4DACTION/* -* when 4D receives a URL beginning with *4DCGI/* -* when 4D receives a URL beginning with *4DSYNC/* * when 4D receives a URL requesting a static page that does not exist * when 4D receives a root access URL and no home page has been set in the Database Settings or by means of the [WEB SET HOME PAGE](web-set-home-page.md) command * when 4D processes a *4DSCRIPT* tag in a semi-dynamic page * when 4D processes a *4DLOOP* tag based on a method in a semi-dynamic page. -**Compatibility note:** The database method is also called when 4D receives a URL beginning with *4DMETHOD/*. This URL is obsolete and is only kept for compatibility's sake. Note that the On Web Authentication database method is NOT called when the server receives a URL requesting a valid static page. diff --git a/docs/commands-legacy/on-web-connection-database-method.md b/docs/commands-legacy/on-web-connection-database-method.md index 3cec267f8877d5..32d082de5b090f 100644 --- a/docs/commands-legacy/on-web-connection-database-method.md +++ b/docs/commands-legacy/on-web-connection-database-method.md @@ -20,10 +20,7 @@ displayed_sidebar: docs ## -The **On Web Connection database method** can be called in the following cases: - -* the web server receives a request beginning with the *4DCGI* URL. -* the web server receives an invalid request. +The **On Web Connection database method** can be called when the web server receives an invalid request. The request should have previously been accepted by the [On Web Authentication database method](on-web-authentication-database-method.md) (if it exists) and the web server must be launched. @@ -69,19 +66,8 @@ Note that you are free to use this parameter at your convenience. 4D simply igno * **Header and body of the HTTP request** The second parameter (*$http*) is the header and the body of the HTTP request sent by the web browser. Note that this information is passed to your On Web Connection database method "as is". Its contents will vary depending on the nature of the web browser attempting the connection. -With Safari running on Mac OS, you may receive a header similar to this: - -``` -GET /favicon.ico HTTP/1.1Referer: http://123.45.67.89/4dcgi/testUser-Agent: Mozilla/5.0 (Macintosh; U; Intel macOS; fr-fr) AppleWebKit/523.10.3 (KHTML, like Gecko) Version/3.0.4 Safari/523.10Cache-Control: max-age=0Accept: */*Accept-Language: fr-frAccept-Encoding: gzip, deflateConnection: keep-aliveHost: 123.45.67.89 -``` - -With Microsoft Internet Explorer 8 running on Windows, you may receive a header similar to this: - -``` -GET / HTTP/1.1Accept: image/jpeg, application/x-ms-application, image/gif, application/xaml+xml, image/pjpeg, application/x-ms-xbap, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*Accept-Language: fr-FRUser-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)Accept-Encoding: gzip, deflateHost: 123.45.67.89Connection: Keep-Alive -``` - - If your application uses this information, it is up to you to parse the header and the body. + +If your application uses this information, it is up to you to parse the header and the body. **Note:** For performance reasons, the size of this data cannot be more than 32 KB. Beyond this, they are truncated by the 4D HTTP server. * **IP address of the web client** @@ -97,12 +83,11 @@ The *$user* and *$pw* parameters receive the user name and password entered by t ## On Web Connection Database Method Calls -The **On Web Connection database method** can be used as the entry point for the 4D Web server, either using the special *4DCGI* URL, or using customized command URLs. +The **On Web Connection database method** can be used as the entry point for the 4D Web server using customized command URLs. **Warning:** Calling a 4D command that displays an interface element ([DIALOG](../commands/dialog.md), [ALERT](alert.md), etc.) ends the method processing. The **On Web Connection database method** is therefore called in the following cases: -* When 4D receives the */4DCGI* URL. The database method is called with the */4DCGI/* URL in *$url*. -* When a Web page is called with a URL of type */* is not found. The database method is called with the URL. -* When a Web page is called with a URL of type */* and no home page has been defined by default. The database method is called with the URL. +* When a Web page called with a URL of type `/` is not found. The database method is called with the URL. +* When a Web page is called with a URL of type `/` and no home page has been defined by default. The database method is called with the URL. diff --git a/docs/commands-legacy/on-web-legacy-close-session-database-method.md b/docs/commands-legacy/on-web-legacy-close-session-database-method.md index 95284806f29dc8..815618d41ff9eb 100644 --- a/docs/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/docs/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ The **On Web Legacy Close Session database method** is called by the 4D Web serv * when the maximum period of inactivity for the session process is reached (480 minutes by default, modifiable using the [WEB SET OPTION](web-set-option.md) command), * when the [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) command is called. -When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [QR SET DESTINATION](qr-set-destination.md). +When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [On Web Connection](./on-web-connection-database-method.md). **Note:** In the context of a 4D Mobile session (which can generate several processes), the **On Web Legacy Close Session database method** is called for each Web process that is closed, allowing you to save all types of data (variables, selection, etc.) generated by the 4D Mobile session process. diff --git a/docs/commands-legacy/web-get-http-body.md b/docs/commands-legacy/web-get-http-body.md index ffaaf70cf6a40e..78177e4a3a4ff8 100644 --- a/docs/commands-legacy/web-get-http-body.md +++ b/docs/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs The **WEB GET HTTP BODY** command returns the body of the HTTP request being processed. The HTTP body is returned as is, without processing or parsing. -This command can be called using a Web database method (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) or any Web method. +This command can be called using a Web database method ([On Web Authentication](./on-web-authentication-database-method.md), [On Web Connection](./on-web-connection-database-method.md)) or any Web method. In *body*, you can pass a variable or a field of the BLOB or Text type. The Text type is generally sufficient (the *body* parameter can receive up to 2 GB of text). diff --git a/docs/commands-legacy/web-get-http-header.md b/docs/commands-legacy/web-get-http-header.md index a005edbe06047f..144555eedec4cf 100644 --- a/docs/commands-legacy/web-get-http-header.md +++ b/docs/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs The **WEB GET HTTP HEADER** command returns either a string or two arrays, containing the HTTP header used for the currently processed request. -This command can be called from within any method (*On Web Authentication Database Method* or [QR SET DESTINATION](qr-set-destination.md), method called by "*/4DACTION*"...) executed in a Web process. +This command can be called from within any method ([On Web Authentication](./on-web-authentication-database-method.md), [On Web Connection](./on-web-connection-database-method.md)), method called by "*/4DACTION*") executed in a Web process... * **First syntax:** **WEB GET HTTP HEADER** **(header)** When this syntax is used, the result returned in the *header* variable is as follows: @@ -64,15 +64,15 @@ The following method allows getting any HTTP request header field content:   // GetHTTPField (Text) -> Text   // GetHTTPField (HTTP header name) -> HTTP header content   - var $0;$1 : Text +#DECLARE ($hName : Text) -> $hContent : Text  var $vlItem : Integer  ARRAY TEXT($names;0)  ARRAY TEXT($values;0) - $0:="" + $hContent:=""  WEB GET HTTP HEADER($names;$values) - $vlItem:=Find in array($names;$1) + $vlItem:=Find in array($names;$hName)  If($vlItem>0) -    $0:=$values{$vlItem} +    $hContent:=$values{$vlItem}  End if ``` @@ -83,7 +83,7 @@ The following method allows getting any HTTP request header field content:  $cookie:=GetHTTPField("Cookie") ``` -* You can send different pages according to the language set in the browser (for example in the [QR SET DESTINATION](qr-set-destination.md)): +* You can send different pages according to the language set in the browser (for example in the [On Web Connection](./on-web-connection-database-method.md) database method)): ```4d  $language:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ The following method allows getting any HTTP request header field content: **Note:** Web browsers allow defining several languages by default. They are listed in the "Accept-Language" field, separated by a ";". Their priority is defined according to their position within the string; therefore it is a good idea to test language positions in the string. -* Here is an example of virtual hosts (for example, in the [QR SET DESTINATION](qr-set-destination.md)). The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. +* Here is an example of virtual hosts. The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/docs/commands-legacy/web-get-variables.md b/docs/commands-legacy/web-get-variables.md index 0d5863c597c8ed..db602d05a046cf 100644 --- a/docs/commands-legacy/web-get-variables.md +++ b/docs/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ This command gets the value for all the variables which can be included in HTML This command is valid regardless of the type of URL or form (POST or GET method) sent to the Web server. -This command can be called, if necessary, in the [QR SET DESTINATION](qr-set-destination.md) or any other 4D method resulting from a form submission. +This command can be called, if necessary, in the [On Web Connection](./on-web-connection-database-method.md) database method) or any other 4D method resulting from a form submission. ### About Web forms and their associated actions diff --git a/docs/commands-legacy/web-send-http-redirect.md b/docs/commands-legacy/web-send-http-redirect.md index 35d625271ff694..af82fad96b1c8e 100644 --- a/docs/commands-legacy/web-send-http-redirect.md +++ b/docs/commands-legacy/web-send-http-redirect.md @@ -30,30 +30,14 @@ Note that the status of the request sent by this command is **302: Moved Tempora ## Example -You can use this command to execute custom requests in 4D by using static pages. Imagine that you have placed the following elements in a static HTML page: -![](../assets/en/commands/pict38648.en.png) - -**Note:** The POST action “/4dcgi/rech” has been associated to the text area and to the **OK** and **Cancel** buttons. +```4d +  +var $targetURL : Text +$targetURL := "https://www.example.com" -In the [QR SET DESTINATION](qr-set-destination.md), you insert the following code: +WEB SEND HTTP REDIRECT($targetURL) -```4d - Case of -    :($1="/4dcgi/rech") //When 4D receives this URL -  //If the OK button has been used and the ‘name’ field contains a Value -       If((bOK="OK") & (name#"")) -  //Change the URL to execute the request code, -  //placed farther down in the same method -          WEB SEND HTTP REDIRECT("/4dcgi/rech?"+name) -       Else -  //Else return to the beginning page -          WEB SEND HTTP REDIRECT("/page1.htm") -       End if -       ... -    :($1="/4dcgi/rech?@") //If the URL has been redirected -       ... //Put the request code here - End case ``` diff --git a/docs/commands/process-activity.md b/docs/commands/process-activity.md index 667d4dccfde993..b18ba3fef7e996 100644 --- a/docs/commands/process-activity.md +++ b/docs/commands/process-activity.md @@ -19,6 +19,7 @@ displayed_sidebar: docs |Release|Changes| |---|---| |20 R7|Support of *sessionID* parameter| +|21|Support of web user sessions| @@ -55,10 +56,9 @@ When executed on 4D in remote or local mode, `Process activity` always returns t The "sessions" property contains a collection of objects describing all running sessions on the server. For a description of session object properties, please refer to the [`Session info`](session-info.md) command. -:::note Notes +:::note -- You can get the object of a session using the [Session](session.md) command. -- `Process activity` returns remote client sessions, stored procedure session and rest sessions but not Web sessions (limitation). +You can get the object of a session using the [Session](session.md) command. ::: diff --git a/docs/settings/web.md b/docs/settings/web.md index 401b6d1c96e3f8..2a4227d86e5ca7 100644 --- a/docs/settings/web.md +++ b/docs/settings/web.md @@ -36,10 +36,6 @@ Indicates whether or not the Web server will accept secure connections. See [Ena Allows you to modify the TCP/IP port number used by the Web server for secured HTTP connections over TLS (HTTPS protocol). See [HTTPS Port](../WebServer/webServerConfig.md#https-port). -#### Allow database access through 4DSYNC URLs - -*Compatibility Note*: This option is [deprecated](../WebServer/webServerConfig.md#deprecated-settings). For database access through HTTP, it is now recommended to use ORDA remote datastore features and REST requests. - ### Paths @@ -125,7 +121,7 @@ Not available with [scalable sessions](../WebServer/sessions.md). Enables preemptive web processes in your compiled applications. When **Use preemptive processes** is selected, the eligibility of your web-related code (including 4D tags and web database methods) to the preemptive execution will be evaluated during the compilation. For more information, see [Using preemptive Web processes](../WebServer/preemptiveWeb.md). -> This option does not apply to scalable sessions, REST processes (compiled mode), and web service processes (server or client). See [Enabling the preemptive mode for the web server](../WebServer/webServerConfig.md#use-preemptive-processes). +> This option does not apply to scalable sessions, REST processes (compiled mode), and web service processes (server or client). See [Enabling the preemptive mode for the web server](../WebServer/webServerConfig.md#use-preemptive-processes). #### Inactive Process Timeout diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md index 288a4edce9d2ee..0f34cf4b8e6ac3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ El **Método base On Web Legacy Close Session** es llamado por el servidor web d * cuando se alcanza el periodo máximo de inactividad del proceso de la sesión (480 minutos por defecto, modificable vía el comando [WEB SET OPTION](web-set-option.md)), * cuando se llama al comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** en el contexto de una sesión 4D Mobile (que puede generar varios procesos), el **Método base On Web Legacy Close Session** se llama para cada proceso web cerrado, lo que permite guardar todo tipo de datos (variables, selección, etc.) generados por el proceso de sesión 4D Mobile. diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index 1c01db5469f1a9..8abfb6da484aec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP BODY** devuelve el cuerpo de la solicitud HTTP que esta siendo procesada. El cuerpo HTTP se devuelve tal cual, sin proceso ni análisis. -Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md)) o todo método web. +Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md)) o todo método web. Puede pasar en el parámetro *cuerpo*, una variable o un campo de tipo BLOB o Texto. El tipo Texto, por lo general será suficiente (el parámetro *cuerpo* puede recibir hasta 2GB de texto) diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index 18a96110dbf6da..fe5c31dfdcc6cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP HEADER** devuelve, en una cadena o dos arrays, el encabezado HTTP de la petición en proceso. -Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. +Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. * **Primera sintaxis:** **WEB GET HTTP HEADER** **(encabezado)** Cuando se utiliza esta sintaxis, el resultado devuelto en la variable *encabezado* es el siguiente: @@ -100,7 +100,7 @@ On Web Connection): **Nota:** los navegadores web permiten definir varios idiomas por defecto. Están listados en el campo "Accept-Language", separados por un ";". Su propiedad está definida de acuerdo a su posición dentro de la cadena; por lo tanto es una buena idea probar la posición de los idiomas en la cadena. -* Este es un ejemplo de hosts virtuales (por ejemplo en el [QR SET DESTINATION](qr-set-destination.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. +* Este es un ejemplo de hosts virtuales (por ejemplo en el [On Web Connection](./on-web-connection-database-method.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 6cfbc64c05b32d..4ab1872991f1ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Puede utilizar este comando para efectuar, con la ayuda de páginas estáticas, **Nota:** la acción POST “/4dcgi/rech” se ha asociado al área de texto y a los botones **Aceptar** y **Cancelar**. -En el [QR SET DESTINATION](qr-set-destination.md), inserte el siguiente código: +En el [On Web Connection](./on-web-connection-database-method.md), inserte el siguiente código: ```4d  Case of diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md index 288a4edce9d2ee..0f34cf4b8e6ac3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ El **Método base On Web Legacy Close Session** es llamado por el servidor web d * cuando se alcanza el periodo máximo de inactividad del proceso de la sesión (480 minutos por defecto, modificable vía el comando [WEB SET OPTION](web-set-option.md)), * cuando se llama al comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** en el contexto de una sesión 4D Mobile (que puede generar varios procesos), el **Método base On Web Legacy Close Session** se llama para cada proceso web cerrado, lo que permite guardar todo tipo de datos (variables, selección, etc.) generados por el proceso de sesión 4D Mobile. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md index 1c01db5469f1a9..8abfb6da484aec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP BODY** devuelve el cuerpo de la solicitud HTTP que esta siendo procesada. El cuerpo HTTP se devuelve tal cual, sin proceso ni análisis. -Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md)) o todo método web. +Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md)) o todo método web. Puede pasar en el parámetro *cuerpo*, una variable o un campo de tipo BLOB o Texto. El tipo Texto, por lo general será suficiente (el parámetro *cuerpo* puede recibir hasta 2GB de texto) diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md index 18a96110dbf6da..fe5c31dfdcc6cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP HEADER** devuelve, en una cadena o dos arrays, el encabezado HTTP de la petición en proceso. -Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. +Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. * **Primera sintaxis:** **WEB GET HTTP HEADER** **(encabezado)** Cuando se utiliza esta sintaxis, el resultado devuelto en la variable *encabezado* es el siguiente: @@ -100,7 +100,7 @@ On Web Connection): **Nota:** los navegadores web permiten definir varios idiomas por defecto. Están listados en el campo "Accept-Language", separados por un ";". Su propiedad está definida de acuerdo a su posición dentro de la cadena; por lo tanto es una buena idea probar la posición de los idiomas en la cadena. -* Este es un ejemplo de hosts virtuales (por ejemplo en el [QR SET DESTINATION](qr-set-destination.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. +* Este es un ejemplo de hosts virtuales (por ejemplo en el [On Web Connection](./on-web-connection-database-method.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md index 6cfbc64c05b32d..4ab1872991f1ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Puede utilizar este comando para efectuar, con la ayuda de páginas estáticas, **Nota:** la acción POST “/4dcgi/rech” se ha asociado al área de texto y a los botones **Aceptar** y **Cancelar**. -En el [QR SET DESTINATION](qr-set-destination.md), inserte el siguiente código: +En el [On Web Connection](./on-web-connection-database-method.md), inserte el siguiente código: ```4d  Case of diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md index 288a4edce9d2ee..0f34cf4b8e6ac3 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ El **Método base On Web Legacy Close Session** es llamado por el servidor web d * cuando se alcanza el periodo máximo de inactividad del proceso de la sesión (480 minutos por defecto, modificable vía el comando [WEB SET OPTION](web-set-option.md)), * cuando se llama al comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Cuando se llama a este método base, el contexto de la sesión (variables y selecciones generadas por el usuario) es aún valido. Esto significa que puede guardar los datos relativos a la sesión para poder usarlos posteriormente, más específicamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** en el contexto de una sesión 4D Mobile (que puede generar varios procesos), el **Método base On Web Legacy Close Session** se llama para cada proceso web cerrado, lo que permite guardar todo tipo de datos (variables, selección, etc.) generados por el proceso de sesión 4D Mobile. diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md index 1c01db5469f1a9..8abfb6da484aec 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP BODY** devuelve el cuerpo de la solicitud HTTP que esta siendo procesada. El cuerpo HTTP se devuelve tal cual, sin proceso ni análisis. -Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md)) o todo método web. +Este comando puede llamarse utilizando un método de base web (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md)) o todo método web. Puede pasar en el parámetro *cuerpo*, una variable o un campo de tipo BLOB o Texto. El tipo Texto, por lo general será suficiente (el parámetro *cuerpo* puede recibir hasta 2GB de texto) diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md index 18a96110dbf6da..fe5c31dfdcc6cf 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs El comando **WEB GET HTTP HEADER** devuelve, en una cadena o dos arrays, el encabezado HTTP de la petición en proceso. -Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [QR SET DESTINATION](qr-set-destination.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. +Este comando puede llamarse desde cualquier método (*Método de base On Web Authentication*, [On Web Connection](./on-web-connection-database-method.md), método llamado por "*/4DACTION"*...) ejecutado en un proceso web. * **Primera sintaxis:** **WEB GET HTTP HEADER** **(encabezado)** Cuando se utiliza esta sintaxis, el resultado devuelto en la variable *encabezado* es el siguiente: @@ -100,7 +100,7 @@ On Web Connection): **Nota:** los navegadores web permiten definir varios idiomas por defecto. Están listados en el campo "Accept-Language", separados por un ";". Su propiedad está definida de acuerdo a su posición dentro de la cadena; por lo tanto es una buena idea probar la posición de los idiomas en la cadena. -* Este es un ejemplo de hosts virtuales (por ejemplo en el [QR SET DESTINATION](qr-set-destination.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. +* Este es un ejemplo de hosts virtuales (por ejemplo en el [On Web Connection](./on-web-connection-database-method.md)). Los siguiente nombres "home\_site.com", "home\_site1.com" y "home\_site2.com" apuntan a la misma dirección IP, por ejemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md index 6cfbc64c05b32d..4ab1872991f1ee 100644 --- a/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md +++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Puede utilizar este comando para efectuar, con la ayuda de páginas estáticas, **Nota:** la acción POST “/4dcgi/rech” se ha asociado al área de texto y a los botones **Aceptar** y **Cancelar**. -En el [QR SET DESTINATION](qr-set-destination.md), inserte el siguiente código: +En el [On Web Connection](./on-web-connection-database-method.md), inserte el siguiente código: ```4d  Case of diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md index 386afd2de2c044..ef5f50b0de1a22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ La **On Web Legacy Close Session database method** est appelée par le serveur W * lorsque la période maximale d’inactivité du process de la session est atteinte (480 minutes par défaut, modifiable via la commande [WEB SET OPTION](web-set-option.md)), * lorsque la commande [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) est appelée. -Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [QR SET DESTINATION](qr-set-destination.md). +Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [On Web Connection](./on-web-connection-database-method.md). **Note :** Dans le contexte d'une session 4D Mobile (pouvant générer plusieurs process), la **On Web Legacy Close Session database method** est appelée pour chaque process Web refermé, vous permettant de sauvegarder tout type de donnée (variable, sélection, etc.) générée par le process de session 4D Mobile. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index ec0dc3258968b5..bfe1be4d6f24f3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP BODY** retourne le corps (body) de la requête HTTP en cours de traitement. Le corps HTTP est retourné tel quel, sans traitement ni analyse. -Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [QR SET DESTINATION](qr-set-destination.md) ou toute méthode Web. +Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [On Web Connection](./on-web-connection-database-method.md) ou toute méthode Web. Vous pouvez passer dans le paramètre *corps* une variable ou un champ de type BLOB ou Texte. Le type Texte sera généralement suffisant (le paramètre *corps* peut recevoir jusqu'à 2 Go de texte). diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index 33d56d814c3f08..87f7896b86c137 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP HEADER** retourne, soit sous forme de chaîne, soit sous forme de deux tableaux, l’en-tête HTTP de la requête en cours de traitement. -Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [QR SET DESTINATION](qr-set-destination.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. +Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [On Web Connection](./on-web-connection-database-method.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. * **Première syntaxe :** **WEB GET HTTP HEADER** **(entête)** @@ -82,7 +82,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être  $cookie:=GetHTTPField("Cookie") ``` -* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)) : +* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)) : ```4d  $langue:=GetHTTPField("Accept-Language") @@ -98,7 +98,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être **Note :** Les navigateurs Web permettent de définir plusieurs langues par défaut. Elles sont listées dans le champ “Accept-Language”, séparées par des ";". Leur priorité est définie par leur position au sein de la chaîne ; il peut donc être utile de tester la position des langues dans la chaîne. -* Exemple de gestion des hôtes virtuels (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. +* Exemple de gestion des hôtes virtuels (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index 84a23c318b8710..e4f707e7307a47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -22,7 +22,7 @@ Cette commande récupère la valeur de toutes les variables pouvant être inclus **Note :** Dans le cas des cases à cocher, le nom de la variable et sa valeur ne sont retournés que si la case est effectivement cochée. La commande fonctionne quel que soit le type d’URL ou de formulaire (méthode POST ou GET) envoyé au serveur Web. -Cette commande peut être appelée, selon les besoins, dans la [QR SET DESTINATION](qr-set-destination.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. +Cette commande peut être appelée, selon les besoins, dans la [On Web Connection](./on-web-connection-database-method.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. ### Précisions sur les formulaires Web et les actions associées diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 5d7d8910b40db1..1865040bc3492c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -35,7 +35,7 @@ Vous pouvez utiliser cet URL pour effectuer, à l’aide de pages statiques, des ![](../assets/en/commands/pict38648.fr.png) L’action POST “/4dcgi/rech” a été associée à la zone de texte et aux boutons **OK** et **Annuler**. -Dans la [QR SET DESTINATION](qr-set-destination.md), placez les instructions suivantes : +Dans la [On Web Connection](./on-web-connection-database-method.md), placez les instructions suivantes : ```4d  Case of diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md index 386afd2de2c044..ef5f50b0de1a22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ La **On Web Legacy Close Session database method** est appelée par le serveur W * lorsque la période maximale d’inactivité du process de la session est atteinte (480 minutes par défaut, modifiable via la commande [WEB SET OPTION](web-set-option.md)), * lorsque la commande [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) est appelée. -Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [QR SET DESTINATION](qr-set-destination.md). +Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [On Web Connection](./on-web-connection-database-method.md). **Note :** Dans le contexte d'une session 4D Mobile (pouvant générer plusieurs process), la **On Web Legacy Close Session database method** est appelée pour chaque process Web refermé, vous permettant de sauvegarder tout type de donnée (variable, sélection, etc.) générée par le process de session 4D Mobile. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md index ec0dc3258968b5..bfe1be4d6f24f3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP BODY** retourne le corps (body) de la requête HTTP en cours de traitement. Le corps HTTP est retourné tel quel, sans traitement ni analyse. -Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [QR SET DESTINATION](qr-set-destination.md) ou toute méthode Web. +Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [On Web Connection](./on-web-connection-database-method.md) ou toute méthode Web. Vous pouvez passer dans le paramètre *corps* une variable ou un champ de type BLOB ou Texte. Le type Texte sera généralement suffisant (le paramètre *corps* peut recevoir jusqu'à 2 Go de texte). diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md index 33d56d814c3f08..87f7896b86c137 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP HEADER** retourne, soit sous forme de chaîne, soit sous forme de deux tableaux, l’en-tête HTTP de la requête en cours de traitement. -Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [QR SET DESTINATION](qr-set-destination.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. +Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [On Web Connection](./on-web-connection-database-method.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. * **Première syntaxe :** **WEB GET HTTP HEADER** **(entête)** @@ -82,7 +82,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être  $cookie:=GetHTTPField("Cookie") ``` -* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)) : +* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)) : ```4d  $langue:=GetHTTPField("Accept-Language") @@ -98,7 +98,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être **Note :** Les navigateurs Web permettent de définir plusieurs langues par défaut. Elles sont listées dans le champ “Accept-Language”, séparées par des ";". Leur priorité est définie par leur position au sein de la chaîne ; il peut donc être utile de tester la position des langues dans la chaîne. -* Exemple de gestion des hôtes virtuels (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. +* Exemple de gestion des hôtes virtuels (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md index 84a23c318b8710..e4f707e7307a47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md @@ -22,7 +22,7 @@ Cette commande récupère la valeur de toutes les variables pouvant être inclus **Note :** Dans le cas des cases à cocher, le nom de la variable et sa valeur ne sont retournés que si la case est effectivement cochée. La commande fonctionne quel que soit le type d’URL ou de formulaire (méthode POST ou GET) envoyé au serveur Web. -Cette commande peut être appelée, selon les besoins, dans la [QR SET DESTINATION](qr-set-destination.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. +Cette commande peut être appelée, selon les besoins, dans la [On Web Connection](./on-web-connection-database-method.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. ### Précisions sur les formulaires Web et les actions associées diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md index 5d7d8910b40db1..1865040bc3492c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md @@ -35,7 +35,7 @@ Vous pouvez utiliser cet URL pour effectuer, à l’aide de pages statiques, des ![](../assets/en/commands/pict38648.fr.png) L’action POST “/4dcgi/rech” a été associée à la zone de texte et aux boutons **OK** et **Annuler**. -Dans la [QR SET DESTINATION](qr-set-destination.md), placez les instructions suivantes : +Dans la [On Web Connection](./on-web-connection-database-method.md), placez les instructions suivantes : ```4d  Case of diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md index 386afd2de2c044..ef5f50b0de1a22 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ La **On Web Legacy Close Session database method** est appelée par le serveur W * lorsque la période maximale d’inactivité du process de la session est atteinte (480 minutes par défaut, modifiable via la commande [WEB SET OPTION](web-set-option.md)), * lorsque la commande [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) est appelée. -Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [QR SET DESTINATION](qr-set-destination.md). +Au moment de l’appel de la méthode base, le contexte de la session (variables et sélections générées par l’utilisateur) est toujours valide. Ce principe vous permet donc de stocker les données relatives à la session afin de pouvoir les réutiliser par la suite, en particulier via la [On Web Connection](./on-web-connection-database-method.md). **Note :** Dans le contexte d'une session 4D Mobile (pouvant générer plusieurs process), la **On Web Legacy Close Session database method** est appelée pour chaque process Web refermé, vous permettant de sauvegarder tout type de donnée (variable, sélection, etc.) générée par le process de session 4D Mobile. diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md index ec0dc3258968b5..bfe1be4d6f24f3 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP BODY** retourne le corps (body) de la requête HTTP en cours de traitement. Le corps HTTP est retourné tel quel, sans traitement ni analyse. -Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [QR SET DESTINATION](qr-set-destination.md) ou toute méthode Web. +Cette commande peut être appelée depuis la *Méthode base Sur authentification Web*, la [On Web Connection](./on-web-connection-database-method.md) ou toute méthode Web. Vous pouvez passer dans le paramètre *corps* une variable ou un champ de type BLOB ou Texte. Le type Texte sera généralement suffisant (le paramètre *corps* peut recevoir jusqu'à 2 Go de texte). diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md index 33d56d814c3f08..87f7896b86c137 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs La commande **WEB GET HTTP HEADER** retourne, soit sous forme de chaîne, soit sous forme de deux tableaux, l’en-tête HTTP de la requête en cours de traitement. -Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [QR SET DESTINATION](qr-set-destination.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. +Cette commande peut être appelée depuis toute méthode (*Méthode base Sur authentification Web*, [On Web Connection](./on-web-connection-database-method.md), méthode appelée par "*/4DACTION*"...) exécutée dans un process Web. * **Première syntaxe :** **WEB GET HTTP HEADER** **(entête)** @@ -82,7 +82,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être  $cookie:=GetHTTPField("Cookie") ``` -* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)) : +* Vous pouvez également envoyer des pages différentes en fonction de la langue du navigateur (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)) : ```4d  $langue:=GetHTTPField("Accept-Language") @@ -98,7 +98,7 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être **Note :** Les navigateurs Web permettent de définir plusieurs langues par défaut. Elles sont listées dans le champ “Accept-Language”, séparées par des ";". Leur priorité est définie par leur position au sein de la chaîne ; il peut donc être utile de tester la position des langues dans la chaîne. -* Exemple de gestion des hôtes virtuels (par exemple dans la [QR SET DESTINATION](qr-set-destination.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. +* Exemple de gestion des hôtes virtuels (par exemple dans la [On Web Connection](./on-web-connection-database-method.md)). Les trois noms “home\_site.com”, “home\_site1.com” et “home\_site2.com” pointent vers la même adresse IP, par exemple 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md index 84a23c318b8710..e4f707e7307a47 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md @@ -22,7 +22,7 @@ Cette commande récupère la valeur de toutes les variables pouvant être inclus **Note :** Dans le cas des cases à cocher, le nom de la variable et sa valeur ne sont retournés que si la case est effectivement cochée. La commande fonctionne quel que soit le type d’URL ou de formulaire (méthode POST ou GET) envoyé au serveur Web. -Cette commande peut être appelée, selon les besoins, dans la [QR SET DESTINATION](qr-set-destination.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. +Cette commande peut être appelée, selon les besoins, dans la [On Web Connection](./on-web-connection-database-method.md) ou toute autre méthode 4D qui résulte de la soumission d’un formulaire. ### Précisions sur les formulaires Web et les actions associées diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md index 5d7d8910b40db1..1865040bc3492c 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md +++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md @@ -35,7 +35,7 @@ Vous pouvez utiliser cet URL pour effectuer, à l’aide de pages statiques, des ![](../assets/en/commands/pict38648.fr.png) L’action POST “/4dcgi/rech” a été associée à la zone de texte et aux boutons **OK** et **Annuler**. -Dans la [QR SET DESTINATION](qr-set-destination.md), placez les instructions suivantes : +Dans la [On Web Connection](./on-web-connection-database-method.md), placez les instructions suivantes : ```4d  Case of diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-authentication-database-method.md index 5af9cdba10f03f..3b0a5fe1d5d317 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-web-authentication-database-method.md @@ -68,7 +68,7 @@ displayed_sidebar: docs **注:** * パフォーマンスの理由から、このデータのサイズは32KBで切り取られます。 - * この引数に関する詳細は[QR SET DESTINATION](qr-set-destination.md)の説明を参照してください。 + * この引数に関する詳細は[On Web Connection](./on-web-connection-database-method.md)の説明を参照してください。 * **WebクライアントのIPアドレス** $ipBrowser 引数はブラウザマシンのIPアドレスを受け取ります。この情報を使用して、イントラネットアクセスとインターネットアクセスを区別できます。 @@ -86,9 +86,9 @@ $user と $pw 引数は、ブラウザーが表示する標準の認証ダイア * $result=**True**: 接続を受け入れる * $result=**False**: 接続を受け入れない -[QR SET DESTINATION](qr-set-destination.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 +[On Web Connection](./on-web-connection-database-method.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 -**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[QR SET DESTINATION](qr-set-destination.md)が実行されます。 +**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[On Web Connection](./on-web-connection-database-method.md)が実行されます。 **注:** diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index 5a6d9eccb35eeb..33c2a71e9caf0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs **WEB GET HTTP BODY**コマンドは、 処理中のHTTPリクエストのボディを返します。 HTTPボディは、処理や解析されることなく、そのままの状態で返されます。 -このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[QR SET DESTINATION](qr-set-destination.md)) 、またはWebリクエスト処理メソッドで呼び出します。 +このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[On Web Connection](./on-web-connection-database-method.md)) 、またはWebリクエスト処理メソッドで呼び出します。 引数 *body* にはBLOBまたはテキストタイプの変数やフィールドを渡すことができます。一般的に、テキスト型引数の利用が推奨されます (*body*引数は2GBを上限としたテキストを受け取ることができます)。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index cf6a03baa80524..70f38fb733fec8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs **WEB GET HTTP HEADER**コマンドは、 現在処理されているリクエストのHTTPヘッダーを含む2つの配列、または文字列のいずれかを返します。 - このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[QR SET DESTINATION](qr-set-destination.md)) 内から呼び出されます。 + このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[On Web Connection](./on-web-connection-database-method.md)) 内から呼び出されます。 * **1番目のシンタックス:** **WEB GET HTTP HEADER** **(header)** このシンタックスを使用すると、次の結果 (例) が変数 *header* に返されます。 "GET /page.html HTTP/1.0\[CRLF\]User-Agent: browser\[CRLF\]Cookie: C=HELLO" @@ -97,7 +97,7 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し **注:** Webブラウザ上で複数のランゲージをデフォルトで定義することができます。ランゲージは"Accept-Language" フィールドでリストにされ、 ";" で区切られて示されています。文字列内でのランゲージの位置に応じて、その優先順位が定義されます。そのため、文字列内でのランゲージの位置をテストすることをお勧めします。 - 以下は仮想ホストの例です (例えば[QR SET DESTINATION](qr-set-destination.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 + 以下は仮想ホストの例です (例えば[On Web Connection](./on-web-connection-database-method.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index 7ff56d1723a19d..07321b7017fc4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ displayed_sidebar: docs URLのタイプやWebサーバーに送られたフォーム (POSTまたはGETメソッド) に関係なく有効です。 -[QR SET DESTINATION](qr-set-destination.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 +[On Web Connection](./on-web-connection-database-method.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 ### Webフォームと関連するアクションについて diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index 66fa994cb0bd50..67d7b105df0759 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ displayed_sidebar: docs **注:** POSTアクション "/4DCGI/rech" は、テキストエリアと**OK**と**Cancel**ボタンに連携されています。 -[QR SET DESTINATION](qr-set-destination.md)に以下のコードを挿入します。 +[On Web Connection](./on-web-connection-database-method.md)に以下のコードを挿入します。 ```4d  Case of diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-authentication-database-method.md index 5af9cdba10f03f..3b0a5fe1d5d317 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-authentication-database-method.md @@ -68,7 +68,7 @@ displayed_sidebar: docs **注:** * パフォーマンスの理由から、このデータのサイズは32KBで切り取られます。 - * この引数に関する詳細は[QR SET DESTINATION](qr-set-destination.md)の説明を参照してください。 + * この引数に関する詳細は[On Web Connection](./on-web-connection-database-method.md)の説明を参照してください。 * **WebクライアントのIPアドレス** $ipBrowser 引数はブラウザマシンのIPアドレスを受け取ります。この情報を使用して、イントラネットアクセスとインターネットアクセスを区別できます。 @@ -86,9 +86,9 @@ $user と $pw 引数は、ブラウザーが表示する標準の認証ダイア * $result=**True**: 接続を受け入れる * $result=**False**: 接続を受け入れない -[QR SET DESTINATION](qr-set-destination.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 +[On Web Connection](./on-web-connection-database-method.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 -**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[QR SET DESTINATION](qr-set-destination.md)が実行されます。 +**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[On Web Connection](./on-web-connection-database-method.md)が実行されます。 **注:** diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md index 5a6d9eccb35eeb..33c2a71e9caf0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs **WEB GET HTTP BODY**コマンドは、 処理中のHTTPリクエストのボディを返します。 HTTPボディは、処理や解析されることなく、そのままの状態で返されます。 -このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[QR SET DESTINATION](qr-set-destination.md)) 、またはWebリクエスト処理メソッドで呼び出します。 +このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[On Web Connection](./on-web-connection-database-method.md)) 、またはWebリクエスト処理メソッドで呼び出します。 引数 *body* にはBLOBまたはテキストタイプの変数やフィールドを渡すことができます。一般的に、テキスト型引数の利用が推奨されます (*body*引数は2GBを上限としたテキストを受け取ることができます)。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md index cf6a03baa80524..70f38fb733fec8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs **WEB GET HTTP HEADER**コマンドは、 現在処理されているリクエストのHTTPヘッダーを含む2つの配列、または文字列のいずれかを返します。 - このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[QR SET DESTINATION](qr-set-destination.md)) 内から呼び出されます。 + このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[On Web Connection](./on-web-connection-database-method.md)) 内から呼び出されます。 * **1番目のシンタックス:** **WEB GET HTTP HEADER** **(header)** このシンタックスを使用すると、次の結果 (例) が変数 *header* に返されます。 "GET /page.html HTTP/1.0\[CRLF\]User-Agent: browser\[CRLF\]Cookie: C=HELLO" @@ -97,7 +97,7 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し **注:** Webブラウザ上で複数のランゲージをデフォルトで定義することができます。ランゲージは"Accept-Language" フィールドでリストにされ、 ";" で区切られて示されています。文字列内でのランゲージの位置に応じて、その優先順位が定義されます。そのため、文字列内でのランゲージの位置をテストすることをお勧めします。 - 以下は仮想ホストの例です (例えば[QR SET DESTINATION](qr-set-destination.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 + 以下は仮想ホストの例です (例えば[On Web Connection](./on-web-connection-database-method.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md index 7ff56d1723a19d..07321b7017fc4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ displayed_sidebar: docs URLのタイプやWebサーバーに送られたフォーム (POSTまたはGETメソッド) に関係なく有効です。 -[QR SET DESTINATION](qr-set-destination.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 +[On Web Connection](./on-web-connection-database-method.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 ### Webフォームと関連するアクションについて diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md index 66fa994cb0bd50..67d7b105df0759 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ displayed_sidebar: docs **注:** POSTアクション "/4DCGI/rech" は、テキストエリアと**OK**と**Cancel**ボタンに連携されています。 -[QR SET DESTINATION](qr-set-destination.md)に以下のコードを挿入します。 +[On Web Connection](./on-web-connection-database-method.md)に以下のコードを挿入します。 ```4d  Case of diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-authentication-database-method.md index 5af9cdba10f03f..3b0a5fe1d5d317 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-authentication-database-method.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-authentication-database-method.md @@ -68,7 +68,7 @@ displayed_sidebar: docs **注:** * パフォーマンスの理由から、このデータのサイズは32KBで切り取られます。 - * この引数に関する詳細は[QR SET DESTINATION](qr-set-destination.md)の説明を参照してください。 + * この引数に関する詳細は[On Web Connection](./on-web-connection-database-method.md)の説明を参照してください。 * **WebクライアントのIPアドレス** $ipBrowser 引数はブラウザマシンのIPアドレスを受け取ります。この情報を使用して、イントラネットアクセスとインターネットアクセスを区別できます。 @@ -86,9 +86,9 @@ $user と $pw 引数は、ブラウザーが表示する標準の認証ダイア * $result=**True**: 接続を受け入れる * $result=**False**: 接続を受け入れない -[QR SET DESTINATION](qr-set-destination.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 +[On Web Connection](./on-web-connection-database-method.md)は、接続が**On Web Authenticationデータベースメソッド**により受け入れられた時にのみ実行されます。 -**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[QR SET DESTINATION](qr-set-destination.md)が実行されます。 +**警告:** *$result*に値が設定されないか、*$result*が**On Web Authenticationデータベースメソッド**内で定義されていない場合、接続は受け入れるものとされ、[On Web Connection](./on-web-connection-database-method.md)が実行されます。 **注:** diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md index 5a6d9eccb35eeb..33c2a71e9caf0c 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs **WEB GET HTTP BODY**コマンドは、 処理中のHTTPリクエストのボディを返します。 HTTPボディは、処理や解析されることなく、そのままの状態で返されます。 -このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[QR SET DESTINATION](qr-set-destination.md)) 、またはWebリクエスト処理メソッドで呼び出します。 +このコマンドはWebデータベースメソッド (*On Web Authenticationデータベースメソッド*、[On Web Connection](./on-web-connection-database-method.md)) 、またはWebリクエスト処理メソッドで呼び出します。 引数 *body* にはBLOBまたはテキストタイプの変数やフィールドを渡すことができます。一般的に、テキスト型引数の利用が推奨されます (*body*引数は2GBを上限としたテキストを受け取ることができます)。 diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md index cf6a03baa80524..70f38fb733fec8 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs **WEB GET HTTP HEADER**コマンドは、 現在処理されているリクエストのHTTPヘッダーを含む2つの配列、または文字列のいずれかを返します。 - このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[QR SET DESTINATION](qr-set-destination.md)) 内から呼び出されます。 + このコマンドはWebプロセスで実行されるすべてのメソッド ( '/4DACTION'...によって呼び出されるメソッド、*On Web Authenticationデータベースメソッド*または[On Web Connection](./on-web-connection-database-method.md)) 内から呼び出されます。 * **1番目のシンタックス:** **WEB GET HTTP HEADER** **(header)** このシンタックスを使用すると、次の結果 (例) が変数 *header* に返されます。 "GET /page.html HTTP/1.0\[CRLF\]User-Agent: browser\[CRLF\]Cookie: C=HELLO" @@ -97,7 +97,7 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し **注:** Webブラウザ上で複数のランゲージをデフォルトで定義することができます。ランゲージは"Accept-Language" フィールドでリストにされ、 ";" で区切られて示されています。文字列内でのランゲージの位置に応じて、その優先順位が定義されます。そのため、文字列内でのランゲージの位置をテストすることをお勧めします。 - 以下は仮想ホストの例です (例えば[QR SET DESTINATION](qr-set-destination.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 + 以下は仮想ホストの例です (例えば[On Web Connection](./on-web-connection-database-method.md)において) 。次の名前"home\_site.com"、"home\_site1.com" と "home\_site2.com" は同じIPアドレス、例えば192.1.2.3を指している。 ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md index 7ff56d1723a19d..07321b7017fc4b 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ displayed_sidebar: docs URLのタイプやWebサーバーに送られたフォーム (POSTまたはGETメソッド) に関係なく有効です。 -[QR SET DESTINATION](qr-set-destination.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 +[On Web Connection](./on-web-connection-database-method.md)や、フォームをサブミットすることによって呼び出される他の4Dメソッドにおいて、必要に応じこのコマンドを呼び出します。 ### Webフォームと関連するアクションについて diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md index 66fa994cb0bd50..67d7b105df0759 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md +++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ displayed_sidebar: docs **注:** POSTアクション "/4DCGI/rech" は、テキストエリアと**OK**と**Cancel**ボタンに連携されています。 -[QR SET DESTINATION](qr-set-destination.md)に以下のコードを挿入します。 +[On Web Connection](./on-web-connection-database-method.md)に以下のコードを挿入します。 ```4d  Case of diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md index 1aa7356fb8ae42..ad14bac4fb236a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ O comando **On Web Legacy Close Session database method** é chamado pelo servid * quando se alcança o período máximo de inatividade do processo da sessão (480 minutos por defeito, modificá via o comando [WEB SET OPTION](web-set-option.md)), * quando é chamado o comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** No contexto de uma sessão 4D Mobile (que pode gerar vários processos), **On Web Legacy Close Session database method** é chamado para cada processo Web que é fechado, permitindo que salve todos os tipos de dados (variáveis, seleção, etc) gerados pelo processo de sessão 4D Mobile. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md index e37f1b80023ec3..00bbaf87a010f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP BODY** retorna o corpo da solicitação HTTP que esta sendo processada. O corpo HTTP se retorna tal qual, sem processo nem análise. -Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) ou todo método web. +Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [On Web Connection](./on-web-connection-database-method.md)) ou todo método web. Pode passar no parâmetro *corpo*, uma variável ou um campo de tipo BLOB ou Texto. O tipo Texto é geralmente suficiente (o parâmetro *corpo* pode receber até 2 GB de texto). diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md index 85f1cb3e4eaa0f..ce866963da24ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP HEADER** retorna uma string ou dois arrays, que contém o cabeçalho HTTP utilizado na petição em processo. -Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [QR SET DESTINATION](qr-set-destination.md), método chamado por '*/4DACTION*'...) executado em um processo web. +Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [On Web Connection](./on-web-connection-database-method.md), método chamado por '*/4DACTION*'...) executado em um processo web. * **Primeira sintaxe**: **WEB GET HTTP HEADER**(cabeçalho) @@ -83,7 +83,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de  $cookie:=GetHTTPField("Cookie") ``` -* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [QR SET DESTINATION](qr-set-destination.md)): +* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [On Web Connection](./on-web-connection-database-method.md)): ```4d  $idioma:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de **Nota**: os navegadores web permitem definir vários idiomas por padrão. Estão listados no campo "Accept-Language", separados por um ";". Sua propriedade está definida de acordo com sua posição dentro da string; portanto é uma boa ideia testar a posição dos idiomas na string. -* Este é um exemplo de hosts virtuais (por exemplo no [QR SET DESTINATION](qr-set-destination.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. +* Este é um exemplo de hosts virtuais (por exemplo no [On Web Connection](./on-web-connection-database-method.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md index 9cf69e95fe410a..5a23d645060217 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ Este comando obtém o valor de todas as variáveis que podem ser incluídas em p Este comando é valido sem importar o tipo de URL ou de formulário (método POST ou GET) enviado ao servidor web. -Este comando pode ser chamado, se for necessário, no [QR SET DESTINATION](qr-set-destination.md) ou em qualquer outro método 4D que resulte do envio de um formulário. +Este comando pode ser chamado, se for necessário, no [On Web Connection](./on-web-connection-database-method.md) ou em qualquer outro método 4D que resulte do envio de um formulário. ### Sobre formulários Web e suas ações associadas diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md index e1a890c48541c2..cfb336fc67ce6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Pode utilizar este comando para realizar, com a ajuda de páginas estáticas, pe **Nota:** a ação POST “/4dcgi/rech” foi associada à área de texto e aos botões **Aceitar** e **Cancelar**. -Na parte (ou subrotina) do [QR SET DESTINATION](qr-set-destination.md), insere o código abaixo: +Na parte (ou subrotina) do [On Web Connection](./on-web-connection-database-method.md), insere o código abaixo: ```4d  [tab/]Case of diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md index 1aa7356fb8ae42..ad14bac4fb236a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ O comando **On Web Legacy Close Session database method** é chamado pelo servid * quando se alcança o período máximo de inatividade do processo da sessão (480 minutos por defeito, modificá via o comando [WEB SET OPTION](web-set-option.md)), * quando é chamado o comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** No contexto de uma sessão 4D Mobile (que pode gerar vários processos), **On Web Legacy Close Session database method** é chamado para cada processo Web que é fechado, permitindo que salve todos os tipos de dados (variáveis, seleção, etc) gerados pelo processo de sessão 4D Mobile. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md index e37f1b80023ec3..00bbaf87a010f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP BODY** retorna o corpo da solicitação HTTP que esta sendo processada. O corpo HTTP se retorna tal qual, sem processo nem análise. -Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) ou todo método web. +Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [On Web Connection](./on-web-connection-database-method.md)) ou todo método web. Pode passar no parâmetro *corpo*, uma variável ou um campo de tipo BLOB ou Texto. O tipo Texto é geralmente suficiente (o parâmetro *corpo* pode receber até 2 GB de texto). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md index 85f1cb3e4eaa0f..ce866963da24ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP HEADER** retorna uma string ou dois arrays, que contém o cabeçalho HTTP utilizado na petição em processo. -Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [QR SET DESTINATION](qr-set-destination.md), método chamado por '*/4DACTION*'...) executado em um processo web. +Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [On Web Connection](./on-web-connection-database-method.md), método chamado por '*/4DACTION*'...) executado em um processo web. * **Primeira sintaxe**: **WEB GET HTTP HEADER**(cabeçalho) @@ -83,7 +83,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de  $cookie:=GetHTTPField("Cookie") ``` -* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [QR SET DESTINATION](qr-set-destination.md)): +* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [On Web Connection](./on-web-connection-database-method.md)): ```4d  $idioma:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de **Nota**: os navegadores web permitem definir vários idiomas por padrão. Estão listados no campo "Accept-Language", separados por um ";". Sua propriedade está definida de acordo com sua posição dentro da string; portanto é uma boa ideia testar a posição dos idiomas na string. -* Este é um exemplo de hosts virtuais (por exemplo no [QR SET DESTINATION](qr-set-destination.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. +* Este é um exemplo de hosts virtuais (por exemplo no [On Web Connection](./on-web-connection-database-method.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md index 9cf69e95fe410a..5a23d645060217 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ Este comando obtém o valor de todas as variáveis que podem ser incluídas em p Este comando é valido sem importar o tipo de URL ou de formulário (método POST ou GET) enviado ao servidor web. -Este comando pode ser chamado, se for necessário, no [QR SET DESTINATION](qr-set-destination.md) ou em qualquer outro método 4D que resulte do envio de um formulário. +Este comando pode ser chamado, se for necessário, no [On Web Connection](./on-web-connection-database-method.md) ou em qualquer outro método 4D que resulte do envio de um formulário. ### Sobre formulários Web e suas ações associadas diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md index e1a890c48541c2..cfb336fc67ce6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Pode utilizar este comando para realizar, com a ajuda de páginas estáticas, pe **Nota:** a ação POST “/4dcgi/rech” foi associada à área de texto e aos botões **Aceitar** e **Cancelar**. -Na parte (ou subrotina) do [QR SET DESTINATION](qr-set-destination.md), insere o código abaixo: +Na parte (ou subrotina) do [On Web Connection](./on-web-connection-database-method.md), insere o código abaixo: ```4d  [tab/]Case of diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md index 1aa7356fb8ae42..ad14bac4fb236a 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ O comando **On Web Legacy Close Session database method** é chamado pelo servid * quando se alcança o período máximo de inatividade do processo da sessão (480 minutos por defeito, modificá via o comando [WEB SET OPTION](web-set-option.md)), * quando é chamado o comando [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md). -Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [QR SET DESTINATION](qr-set-destination.md). +Quando é chamado este método base, o contexto da sessão (variáveis e seleções geradas pelo usuário) ainda é valido. Isto significa que pode guardar os dados relativos à sessão para poder usar-los posteriormente, mais especificamente utilizando [On Web Connection](./on-web-connection-database-method.md). **Nota:** No contexto de uma sessão 4D Mobile (que pode gerar vários processos), **On Web Legacy Close Session database method** é chamado para cada processo Web que é fechado, permitindo que salve todos os tipos de dados (variáveis, seleção, etc) gerados pelo processo de sessão 4D Mobile. diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md index e37f1b80023ec3..00bbaf87a010f5 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP BODY** retorna o corpo da solicitação HTTP que esta sendo processada. O corpo HTTP se retorna tal qual, sem processo nem análise. -Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) ou todo método web. +Este comando pode ser chamado utilizando um método de banco web (*On Web Authentication Database Method*, [On Web Connection](./on-web-connection-database-method.md)) ou todo método web. Pode passar no parâmetro *corpo*, uma variável ou um campo de tipo BLOB ou Texto. O tipo Texto é geralmente suficiente (o parâmetro *corpo* pode receber até 2 GB de texto). diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md index 85f1cb3e4eaa0f..ce866963da24ec 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs O comando **WEB GET HTTP HEADER** retorna uma string ou dois arrays, que contém o cabeçalho HTTP utilizado na petição em processo. -Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [QR SET DESTINATION](qr-set-destination.md), método chamado por '*/4DACTION*'...) executado em um processo web. +Este comando pode ser chamado desde qualquer método (*On Web Authentication Database Method* ou [On Web Connection](./on-web-connection-database-method.md), método chamado por '*/4DACTION*'...) executado em um processo web. * **Primeira sintaxe**: **WEB GET HTTP HEADER**(cabeçalho) @@ -83,7 +83,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de  $cookie:=GetHTTPField("Cookie") ``` -* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [QR SET DESTINATION](qr-set-destination.md)): +* Pode enviar diferentes páginas em função do idioma do navegador (por exemplo em [On Web Connection](./on-web-connection-database-method.md)): ```4d  $idioma:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de **Nota**: os navegadores web permitem definir vários idiomas por padrão. Estão listados no campo "Accept-Language", separados por um ";". Sua propriedade está definida de acordo com sua posição dentro da string; portanto é uma boa ideia testar a posição dos idiomas na string. -* Este é um exemplo de hosts virtuais (por exemplo no [QR SET DESTINATION](qr-set-destination.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. +* Este é um exemplo de hosts virtuais (por exemplo no [On Web Connection](./on-web-connection-database-method.md)). Os seguintes nomes "home\_site.com", "home\_site1.com" e "home\_site2.com" apontam ao mesmo endereço IP, por exemplo 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md index 9cf69e95fe410a..5a23d645060217 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ Este comando obtém o valor de todas as variáveis que podem ser incluídas em p Este comando é valido sem importar o tipo de URL ou de formulário (método POST ou GET) enviado ao servidor web. -Este comando pode ser chamado, se for necessário, no [QR SET DESTINATION](qr-set-destination.md) ou em qualquer outro método 4D que resulte do envio de um formulário. +Este comando pode ser chamado, se for necessário, no [On Web Connection](./on-web-connection-database-method.md) ou em qualquer outro método 4D que resulte do envio de um formulário. ### Sobre formulários Web e suas ações associadas diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md index e1a890c48541c2..cfb336fc67ce6b 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md +++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R9/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ Pode utilizar este comando para realizar, com a ajuda de páginas estáticas, pe **Nota:** a ação POST “/4dcgi/rech” foi associada à área de texto e aos botões **Aceitar** e **Cancelar**. -Na parte (ou subrotina) do [QR SET DESTINATION](qr-set-destination.md), insere o código abaixo: +Na parte (ou subrotina) do [On Web Connection](./on-web-connection-database-method.md), insere o código abaixo: ```4d  [tab/]Case of diff --git a/versioned_docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md b/versioned_docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md index 95284806f29dc8..815618d41ff9eb 100644 --- a/versioned_docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/versioned_docs/version-20-R10/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ The **On Web Legacy Close Session database method** is called by the 4D Web serv * when the maximum period of inactivity for the session process is reached (480 minutes by default, modifiable using the [WEB SET OPTION](web-set-option.md) command), * when the [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) command is called. -When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [QR SET DESTINATION](qr-set-destination.md). +When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [On Web Connection](./on-web-connection-database-method.md). **Note:** In the context of a 4D Mobile session (which can generate several processes), the **On Web Legacy Close Session database method** is called for each Web process that is closed, allowing you to save all types of data (variables, selection, etc.) generated by the 4D Mobile session process. diff --git a/versioned_docs/version-20-R10/commands-legacy/web-get-http-body.md b/versioned_docs/version-20-R10/commands-legacy/web-get-http-body.md index ffaaf70cf6a40e..93d514701bfbdf 100644 --- a/versioned_docs/version-20-R10/commands-legacy/web-get-http-body.md +++ b/versioned_docs/version-20-R10/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs The **WEB GET HTTP BODY** command returns the body of the HTTP request being processed. The HTTP body is returned as is, without processing or parsing. -This command can be called using a Web database method (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) or any Web method. +This command can be called using a Web database method (*On Web Authentication Database Method*, [On Web Connection](./on-web-connection-database-method.md)) or any Web method. In *body*, you can pass a variable or a field of the BLOB or Text type. The Text type is generally sufficient (the *body* parameter can receive up to 2 GB of text). diff --git a/versioned_docs/version-20-R10/commands-legacy/web-get-http-header.md b/versioned_docs/version-20-R10/commands-legacy/web-get-http-header.md index a005edbe06047f..7e9d5cc78609ce 100644 --- a/versioned_docs/version-20-R10/commands-legacy/web-get-http-header.md +++ b/versioned_docs/version-20-R10/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs The **WEB GET HTTP HEADER** command returns either a string or two arrays, containing the HTTP header used for the currently processed request. -This command can be called from within any method (*On Web Authentication Database Method* or [QR SET DESTINATION](qr-set-destination.md), method called by "*/4DACTION*"...) executed in a Web process. +This command can be called from within any method (*On Web Authentication Database Method* or [On Web Connection](./on-web-connection-database-method.md), method called by "*/4DACTION*"...) executed in a Web process. * **First syntax:** **WEB GET HTTP HEADER** **(header)** When this syntax is used, the result returned in the *header* variable is as follows: @@ -83,7 +83,7 @@ The following method allows getting any HTTP request header field content:  $cookie:=GetHTTPField("Cookie") ``` -* You can send different pages according to the language set in the browser (for example in the [QR SET DESTINATION](qr-set-destination.md)): +* You can send different pages according to the language set in the browser (for example in the [On Web Connection](./on-web-connection-database-method.md)): ```4d  $language:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ The following method allows getting any HTTP request header field content: **Note:** Web browsers allow defining several languages by default. They are listed in the "Accept-Language" field, separated by a ";". Their priority is defined according to their position within the string; therefore it is a good idea to test language positions in the string. -* Here is an example of virtual hosts (for example, in the [QR SET DESTINATION](qr-set-destination.md)). The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. +* Here is an example of virtual hosts (for example, in the [On Web Connection](./on-web-connection-database-method.md)). The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/versioned_docs/version-20-R10/commands-legacy/web-get-variables.md b/versioned_docs/version-20-R10/commands-legacy/web-get-variables.md index 0d5863c597c8ed..f4b6ac31f6f58d 100644 --- a/versioned_docs/version-20-R10/commands-legacy/web-get-variables.md +++ b/versioned_docs/version-20-R10/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ This command gets the value for all the variables which can be included in HTML This command is valid regardless of the type of URL or form (POST or GET method) sent to the Web server. -This command can be called, if necessary, in the [QR SET DESTINATION](qr-set-destination.md) or any other 4D method resulting from a form submission. +This command can be called, if necessary, in the [On Web Connection](./on-web-connection-database-method.md) or any other 4D method resulting from a form submission. ### About Web forms and their associated actions diff --git a/versioned_docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/versioned_docs/version-20-R10/commands-legacy/web-send-http-redirect.md index 35d625271ff694..a2c87b10229b02 100644 --- a/versioned_docs/version-20-R10/commands-legacy/web-send-http-redirect.md +++ b/versioned_docs/version-20-R10/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ You can use this command to execute custom requests in 4D by using static pages. **Note:** The POST action “/4dcgi/rech” has been associated to the text area and to the **OK** and **Cancel** buttons. -In the [QR SET DESTINATION](qr-set-destination.md), you insert the following code: +In the [On Web Connection](./on-web-connection-database-method.md), you insert the following code: ```4d  Case of diff --git a/versioned_docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md b/versioned_docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md index 95284806f29dc8..815618d41ff9eb 100644 --- a/versioned_docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md +++ b/versioned_docs/version-20-R9/commands-legacy/on-web-legacy-close-session-database-method.md @@ -24,7 +24,7 @@ The **On Web Legacy Close Session database method** is called by the 4D Web serv * when the maximum period of inactivity for the session process is reached (480 minutes by default, modifiable using the [WEB SET OPTION](web-set-option.md) command), * when the [WEB LEGACY CLOSE SESSION](web-legacy-close-session.md) command is called. -When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [QR SET DESTINATION](qr-set-destination.md). +When this database method is called, the context of the session (variables and selections generated by the user) is still valid. This means that you can save data related to the session in order to be able to use them again subsequently, more specifically using the [On Web Connection](./on-web-connection-database-method.md). **Note:** In the context of a 4D Mobile session (which can generate several processes), the **On Web Legacy Close Session database method** is called for each Web process that is closed, allowing you to save all types of data (variables, selection, etc.) generated by the 4D Mobile session process. diff --git a/versioned_docs/version-20-R9/commands-legacy/web-get-http-body.md b/versioned_docs/version-20-R9/commands-legacy/web-get-http-body.md index ffaaf70cf6a40e..93d514701bfbdf 100644 --- a/versioned_docs/version-20-R9/commands-legacy/web-get-http-body.md +++ b/versioned_docs/version-20-R9/commands-legacy/web-get-http-body.md @@ -17,7 +17,7 @@ displayed_sidebar: docs The **WEB GET HTTP BODY** command returns the body of the HTTP request being processed. The HTTP body is returned as is, without processing or parsing. -This command can be called using a Web database method (*On Web Authentication Database Method*, [QR SET DESTINATION](qr-set-destination.md)) or any Web method. +This command can be called using a Web database method (*On Web Authentication Database Method*, [On Web Connection](./on-web-connection-database-method.md)) or any Web method. In *body*, you can pass a variable or a field of the BLOB or Text type. The Text type is generally sufficient (the *body* parameter can receive up to 2 GB of text). diff --git a/versioned_docs/version-20-R9/commands-legacy/web-get-http-header.md b/versioned_docs/version-20-R9/commands-legacy/web-get-http-header.md index a005edbe06047f..7e9d5cc78609ce 100644 --- a/versioned_docs/version-20-R9/commands-legacy/web-get-http-header.md +++ b/versioned_docs/version-20-R9/commands-legacy/web-get-http-header.md @@ -18,7 +18,7 @@ displayed_sidebar: docs The **WEB GET HTTP HEADER** command returns either a string or two arrays, containing the HTTP header used for the currently processed request. -This command can be called from within any method (*On Web Authentication Database Method* or [QR SET DESTINATION](qr-set-destination.md), method called by "*/4DACTION*"...) executed in a Web process. +This command can be called from within any method (*On Web Authentication Database Method* or [On Web Connection](./on-web-connection-database-method.md), method called by "*/4DACTION*"...) executed in a Web process. * **First syntax:** **WEB GET HTTP HEADER** **(header)** When this syntax is used, the result returned in the *header* variable is as follows: @@ -83,7 +83,7 @@ The following method allows getting any HTTP request header field content:  $cookie:=GetHTTPField("Cookie") ``` -* You can send different pages according to the language set in the browser (for example in the [QR SET DESTINATION](qr-set-destination.md)): +* You can send different pages according to the language set in the browser (for example in the [On Web Connection](./on-web-connection-database-method.md)): ```4d  $language:=GetHTTPField("Accept-Language") @@ -99,7 +99,7 @@ The following method allows getting any HTTP request header field content: **Note:** Web browsers allow defining several languages by default. They are listed in the "Accept-Language" field, separated by a ";". Their priority is defined according to their position within the string; therefore it is a good idea to test language positions in the string. -* Here is an example of virtual hosts (for example, in the [QR SET DESTINATION](qr-set-destination.md)). The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. +* Here is an example of virtual hosts (for example, in the [On Web Connection](./on-web-connection-database-method.md)). The following names "home\_site.com", "home\_site1.com" and "home\_site2.com" are directed towards the same IP address, for example 192.1.2.3. ```4d  $host:=GetHTTPField("Host") diff --git a/versioned_docs/version-20-R9/commands-legacy/web-get-variables.md b/versioned_docs/version-20-R9/commands-legacy/web-get-variables.md index 0d5863c597c8ed..f4b6ac31f6f58d 100644 --- a/versioned_docs/version-20-R9/commands-legacy/web-get-variables.md +++ b/versioned_docs/version-20-R9/commands-legacy/web-get-variables.md @@ -24,7 +24,7 @@ This command gets the value for all the variables which can be included in HTML This command is valid regardless of the type of URL or form (POST or GET method) sent to the Web server. -This command can be called, if necessary, in the [QR SET DESTINATION](qr-set-destination.md) or any other 4D method resulting from a form submission. +This command can be called, if necessary, in the [On Web Connection](./on-web-connection-database-method.md) or any other 4D method resulting from a form submission. ### About Web forms and their associated actions diff --git a/versioned_docs/version-20-R9/commands-legacy/web-send-http-redirect.md b/versioned_docs/version-20-R9/commands-legacy/web-send-http-redirect.md index 35d625271ff694..a2c87b10229b02 100644 --- a/versioned_docs/version-20-R9/commands-legacy/web-send-http-redirect.md +++ b/versioned_docs/version-20-R9/commands-legacy/web-send-http-redirect.md @@ -36,7 +36,7 @@ You can use this command to execute custom requests in 4D by using static pages. **Note:** The POST action “/4dcgi/rech” has been associated to the text area and to the **OK** and **Cancel** buttons. -In the [QR SET DESTINATION](qr-set-destination.md), you insert the following code: +In the [On Web Connection](./on-web-connection-database-method.md), you insert the following code: ```4d  Case of