2.58 .connect

For the object application, this attribute defines the state and the properties of the connection to a server process. For the objects control and subcontrol, it defines the state of the OLE connection.

Definition

  • Data type

    string (application)

    boolean (control, subcontrol)

  • Access

    get, set

  • changed event

    yes

This attribute defines that the application shall connect to a running server process which was started on the host (defined by the host name or IP address and the port number).

To establish a connection via SSL, the specification of the connection with .connect can be prefixed by the scheme "ssl://" (example .connect "ssl://myserver:0815";).

Example

Without SSL

With SSL

application Appl {
  .connect "localhost:4711";
}
application Appl {
  .connect "ssl://localhost:4711";
}

Remarks

See Also

Manual “Distributed Dialog Manager (DDM)”