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

Example

Without SSL

With SSL

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