Indicates the Internet Information Services (IIS) name and communication protocol.
You can set the Server property at design time in the RDS.DataControl object's OBJECT tags, or at run time in scripting code.
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="computername"> |
In-process |
<PARAM NAME="Server" VALUE=""> |
Protocol | Run-time syntax |
---|---|
HTTP |
DataControl.Server="http://awebsrvr:port" |
HTTPS |
DataControl.Server="https://awebsrvr:port" |
DCOM |
DataControl.Server="computername" |
In-process |
DataControl.Server="" |
The server is the location where the RDS.DataControl request (that is, a query or update) is processed. By default, all requests are processed by the RDSServer.DataFactory object, MSDFMAP.Handler component, and MSDFMAP.INI file on the specified server. Remember that when changing servers to reconcile settings in the old and new MSDFMAP.INI files. Incompatibilities may cause requests that succeed on one server to fail on another. If the Server property is set to "", these objects will be used on the local machine.
Connect Property (RDS) | SQL Property (RDS) | SubmitChanges Method (RDS)
Applies To: DataControl Object (RDS)