ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / HTTP functions
  • Properties specific to httpProgress variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The httpProgress type is used to manage the progress when sending or receiving an HTTP request. The progress characteristics can be defined and changed using different WLanguage properties.
This type of variable is used by:
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
cMaRequête is httpRequest
cMaRequête.URL = "http://www.pcsoft.fr"
cMaRequête.AvancementTéléchargement.Procedure = MaCallBack
cMaRéponse is httpResponse = HTTPEnvoie(cMaRequête)
IF ErrorOccurred THEN
	Error(ErrorInfo(errFullDetails))
ELSE
	Info(cMaRéponse.Content)
END
Properties

Properties specific to httpProgress variables

The following properties can be used to handle the progress when sending or receiving an HTTP request:
Property nameType usedEffect
FrequencyIntegerFrequency for calling the progress bar or the procedure, defined in number of bytes.
The frequency is set to 1000 bytes by default.
Note: The frequency indicated may not be respected..
ProcedureCharacter stringName of procedure used to follow the progress. This procedure will be notified of the progress at the specified frequency.
This procedure has the following format:
PROCEDURE <Nom de la procédure>(<Total>, <Progression>)
where:
  • <Total> is the total number of bytes to transfer.
  • <Progress> is the number of bytes already transferred.
Caution: If properties Procedure and Gauge are set, property Procedure takes priority for the call.
ProgressBarCharacter stringName of the Progress Bar control used to follow the progress. This control will be notified of the progress at the specified frequency.
Caution: If properties Procedure and Gauge are set, property Procedure takes priority for the call.
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/19/2024

Send a report | Local help