ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Web services
  • Managing the type of address
  • Special cases
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
WebserviceClientIPAddress (Function)
In french: WebserviceAdresseIPClient
Returns the IP address of the computer using and calling the Webservice.
Caution: The Webservice must be hosted by the WEBDEV application server.
Example
// Returns the IP address of the client
ClientAddress is string
ClientAddress = WebserviceClientIPAddress()
Syntax
<Result> = WebserviceClientIPAddress([<Type of address>])
<Result>: Character string
IP address of the computer of the Web user:
  • If the connection is in IPv4, the response is in "xxx.xxx.xxx.xxx" format (for example: 195.196.100.1).
  • If the connection is in IPv6, the response is in IPv6 format.
<Type of address>: Optional boolean
  • True to retrieve the initial address specified in the HTTP header,
  • False (default value) to retrieve the IP address in the environment variable "REMOTE_ADDR" defined by the Web server.
Remarks

Managing the type of address

The address returned by WebserviceClientIPAddress may not correspond to the address of the client (if a non-transparent proxy or a Load Balancer is used for example). In this case, WebserviceClientIPAddress returns the IP address of the proxy or the IP address of the Load Balancer.
If the initial address is requested, WebserviceClientIPAddress tries to read the address specified in the HTTP headers. Indeed, most of the proxies provide the initial address in the HTTP headers. However, this address must be used with great care because it is not reliable and it can be entirely wrong.

Special cases

  • If the initial address is not found or if it is invalid (address too long for example), the "standard" address is sent.
  • The server IP address is returned by NetIPAddress.
Component: wd270awws.dll
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help