ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

Category: HTTP functions
50 results
<httpRequest variable>.GetCookie (Function)
Retrieves the cookies read by a call to HTTPSend for an HTTP domain.
<httpRequest variable>.ManageCookie (Function)
Enables or disables the management of cookies in an HTTP request run by HTTPRequest.
<httpRequest variable>.ReadCookie (Function)
Returns the value of a cookie received further to an HTTP request.
<httpRequest variable>.ReplaceCookie (Function)
Replaces all cookies stored by HTTPSend for a domain.
<httpRequest variable>.ResetCookie (Function)
Deletes all the cookies (globally or for a domain) stored by the calls to HTTPRequest.
<httpRequest variable>.Send (Function)
Sends an HTTP request and waits for the response from the HTTP server.
<httpRequest variable>.SendAsynchronous (Function)
Sends an HTTP request in asynchronous mode. This means the program continues to run and the response is processed by a specific procedure.
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 3.
<httpRequest variable>.WriteCookie (Function)
Adds or modifies a cookie in an HTTP request.
<httpResponse variable>.GetCookie (Function)
Retrieves cookies read in the httpResponse variable (containing the result of HTTPSend).
<restRequest variable>.Send (Function)
Sends a REST request and waits for the server response.
Cookie (Variable type)
The Cookie type is used to handle the cookies transmitted in the HTTP requests.
HTTP constants
List of constants used by the HTTP functions.
HTTP functions
List of HTTP functions
HTTP functions (prefix syntax)
List of HTTP functions
HTTP server response procedure parameters
WLanguage procedure ("callback") called by HTTPSend or HTTPSendAsynchronous when the HTTP server responds.
HTTPAddFile (Function)
Adds a file to the HTTP form.
HTTPAddParameter (Function)
Adds a parameter to an HTTP form.
HTTPCancelForm (Function)
Cancels the declaration of an HTTP form and frees all its resources.
HTTPCertificate (Function)
Modifies the client certificate used by default to identify oneself on a server.
HTTPConfigure (Function)
Configures the functions that use the HTTP protocol.
HTTPCookieGet (Function)
Retrieves the cookies read by a call:
HTTPCookieManage (Function)
Enables or disables the management of cookies in an HTTP request run:
HTTPCookieRead (Function)
Returns the value of a cookie received further to an HTTP request.
HTTPCookieReplace (Function)
Replaces all the cookies stored for a domain:
HTTPCookieReset (Function)
Deletes all the cookies (globally or for a domain) stored:
HTTPCookieWrite (Function)
Adds or modifies a cookie in an HTTP request.
HTTPCreateForm (Function)
Creates an HTTP form.
HTTPDestination (Function)
Indicates the backup file for the result of next HTTP request, run in the same thread.
HTTPGetResult (Example)
Usage example of the HTTPGetResult function
HTTPGetResult (Function)
Retrieves the result or the header of last HTTP request run.
HTTPListCertificate (Function)
Lists the client certificates found on the computer to authenticate on a server.
httpProgress (Variable type)
The httpProgress type is used to manage the progress when sending or receiving an HTTP request.
HTTPProgressBar (Function)
Displays a progress bar when:
  • receiving the response to an HTTP request.
  • sending an HTTP form (HTTPSendForm) or an HTTP query.
HTTPRequest (Example)
Usage example of the HTTPRequest function
HTTPRequest (Function)
Starts an HTTP request on a server.
httpRequest (Variable type)
The httpRequest type gets the advanced characteristics of an HTTP/HTTPS request.
HTTPResetForm (Function)
Clears an HTTP form that is being edited.
httpResponse (Variable type)
The httpResponse type is used to get the advanced characteristics of the response of the HTTP/HTTPS request.
HTTPSend (Function)
Sends an HTTP request and waits for the response from the HTTP server.
HTTPSendAsynchronous (Function)
Sends an HTTP request in asynchronous mode. This means the program continues to run and the response is processed by a specific procedure.
This function is only available in subscription-based versions, starting with WINDEV Suite 2025 - Update 3.
HTTPSendForm (Example)
Usage example of the HTTPSendForm function
HTTPSendForm (Function)
Sends an HTTP form.
HTTPSimulateNetwork (Function)
Simulates a slow network by limiting the download and upload speed.
HTTPTimeOut (Function)
Sets the timeout for WLanguage functions that use the HTTP protocol (HTTPRequest, SOAPExecute, DotNetExecute, J2EEExecute, etc.).
InternetConnected (Function)
Defines whether an Internet connection is enabled on the current computer. In mobile, you can also be notified when the status of the Internet connection changes.
OpenAPIToHTTP (Function)
Builds the HTTP request to call a function of an API. It can then be sent using HTTPSend.
Proxy (Function)
Specifies whether the communication functions that use HTTP or HTTPS must go through a proxy to execute their requests. A proxy is used to share the access to Internet between the different network computers.
restRequest (Variable type)
The restRequest type is used to define the advanced characteristics of a REST request.
restResponse (Variable type)
The restResponse type is used to define all the advanced characteristics of a REST response.
RESTSend (Function)
Sends a REST request and waits for the server response.