CREATE SERVER statement

Creates an instance of a server object and assigns its handle to the handle variable you specify.

Syntax

CREATE SERVER handle
  [ ASSIGN { attribute = expression } ... ]
handle
A variable of type HANDLE into which CREATE SERVER stores the new server handle.
ASSIGN {attribute = expression}...
Assigns specified values to attributes of the handle. The attribute parameter must be the name of a valid attribute for a server handle, and the expression parameter must evaluate to a valid value for the attribute.

Note

You can use a server handle as a connection point to an AppServerâ„¢. For more information on server handles, see the Server object handle entry. For more information on AppServers, see OpenEdge Application Server: Developing AppServer Applications.

See also

DELETE OBJECT statement, RUN statement, Server object handle