2.389 .transport
This attribute defines the internal transport mechanism which is used by the communication layer; possible are "tcpip", "dynlib" etc.
To establish a connection via SSL, the specification of the protocol with .transport can be prefixed by the scheme "ssl://" (example .transport "ssl://tcpip";). If no protocol is preset, ://
may be omitted (i.e. .transport "ssl“;).
Definition
-
Data type
string
-
Access
get, set
-
changed event
yes

-
C
Data type: DT_string
-
COBOL
Data type: DT-string
-
Classification
object-specific attribute
-
Objects
Example
|
|
---|---|
application Appl1 { .connect "localhost:4711"; } application Appl2 { .transport "tcpip-winsock"; .connect "localhost:4711"; } |
application Appl1 { .transport "ssl"; .connect "localhost:4711"; } application Appl2 { .transport "ssl://tcpip-winsock"; .connect "localhost:4711"; } |
Remarks
- The attributes .transport, .connect, and .exec can only be changed if .active is set at false.
- The scheme "ssl://" can also be specified at the .connect attribute. If a scheme is given at both attributes, these must be identical. A once specified scheme "ssl://" cannot be turned off again.