Sets or returns the Internet Information Server (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 (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 | DataControl.Server="https://awebsrvr:port" |
HTTPS | DataControl.Server="https://awebsrvr:port" |
DCOM | DataControl.Server="machinename" |
In-process | 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. |
DataControl | An object variable that represents an RDS.DataControl object. |
Remarks
The server location is where the server-side objects are created (as opposed to where the data is located, if they differ).
See Also