Client / Change client behavior at runtime |
TYPE tGlobalEndpointType RECORD # End point Address RECORD # Address Uri STRING # URI END RECORD, Binding RECORD # Binding Version STRING, # HTTP Version (1.0 or 1.1) Cookie STRING, # Cookie to be set ConnectionTimeout INTEGER,# Connection timeout ReadWriteTimeout INTEGER # Read write timeout END RECORD END RECORD
Description of variables:
Binding.Version: Represents the HTTP version to use for communication (only 1.0 or 1.1 allowed, default is 1.1).
Binding.Cookie: Represents the HTTP cookie to use for communication (or NULL if there is no cookie to send).
Binding.ConnectionTimeout : Represents the maximum time in seconds to wait for the establishment of the connection to the server.
Binding.ReadWriteTimeout: Represents the maximum time in seconds to wait for a connection read or write operation before breaking the connection.