WS-Addressing 1.0 Global Endpoint type definition
The client stub provides a global endpoint type for WS-Addressing, tWSAGlobalEndpointType.
The following global type is used by any generated client stub where support for WS-Addressing 1.0 is enabled. It allows the programmer to change the client behavior at runtime, and to send additional WS-Addressing 1.0 reference parameters to a server.
If this global type is used in your main application, you must add the IMPORT
xml instruction.
TYPE tWSAGlobalEndpointType RECORD # End point
  Address RECORD # Address
    Uri STRING, # URI
    Parameters DYNAMIC ARRAY OF xml.DomDocument
      ATTRIBUTES(XMLNamespace="##any",XMLAny) # End point WSA reference parameters
  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 RECORDDescription of variables:
- 
Address.Parameters: Represents the WS-Addressing 1.0 reference parameter to send to a WS-Addressing 1.0 compliant server.For a description of other parameters, see Global Endpoint type definition.