iTP Active Transaction Pages (iTP ATP) Programmer's Guide

ATP Objects, Properties, and Methods
iTP Active Transaction Pages (iTP ATP) Programmer’s Guide522292-002
4-5
Properties
timeout
This property contains the timeout for TCP socket operations. The default value is
100 (1 second). You can use this property to change the timeout value before or
between low-level socket operations.
Remarks
Unsigned integer. Read/write.
Syntax
intValue = oHTTP.timeout
oHTTP.timeout = intValue
url
This property contains the URL that will be used by OPEN and HTTP operations.
The URL value will be parsed into host, port, and queryString properties.
Remarks
String. Read/write.
Syntax
stringValue = oHTTP.url
oHTTP.url = stringValue
Examples
The following examples show the possible URL formats:
http://inline.company.com
host: inline.company.com
port: 80 (default)
path: / (default)
queryString: empty string (default)
myst.loc201.company.com:8080/index.htm?abc=123
host: myst.loc201.company.com
port: 8080
path: /index.htm
queryString: abc=123