Server Property

Sets or returns the Internet Information Server (IIS) name and communication protocol.

You can set the Server property at design time in the RDSIE3.DataControl object's OBJECT tags, or at run time in scripting code (for example, VBScript).

Syntax

Protocol Design-time syntax
HTTP <PARAM NAME="Server" VALUE="http://awebsrvr:port">
HTTPS <PARAM NAME="Server" VALUE="https://awebsrvr:port">
DCOM <PARAM NAME="Server" VALUE="machinename">
In-process <PARAM NAME="Server" VALUE="">

Protocol Run-time syntax
HTTP RDSIE3.DataControl.Server="https://awebsrvr:port"
HTTPS RDSIE3.DataControl.Server="https://awebsrvr:port"
DCOM RDSIE3.DataControl.Server="machinename"
In-process RDSIE3.DataControl.Server=""

Part Description
awebsrvr or machinename A String that contains a valid Internet or intranet path and server name.
port Optional. A port that is used to connect to an IIS server. The port number is set in Internet Explorer (on the View menu, click Options, and then select the Connection tab) or in IIS.
RDSIE3.DataControl An object variable that represents an RDSIE3.DataControl object.

Applies To

RDSIE3.DataControl

Remarks

The server location is where the server-side objects are created (as opposed to where the data is located, if they differ).

Example

See Also

Connect Property, SQL Property, SubmitChanges Method, Transport Protocols