Datasnap.Win.SConnect.TWebConnection.URL

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property URL: string read FURL write SetURL stored IsURLStored;

C++

__property System::UnicodeString URL = {read=FURL, write=SetURL, stored=IsURLStored};

Properties

Type Visibility Source Unit Parent
property published
Datasnap.Win.SConnect.pas
Datasnap.Win.SConnect.hpp
Datasnap.Win.SConnect TWebConnection

Description

Specifies the Uniform Resource Locator for httpsrvr.dll on the server system.

Use URL to specify the Uniform Resource Locator that the Web connection component uses to locate httpsrvr.dll. This DLL, which ships in the BIN directory, is deployed on the same machine as the Web server so that it can accept HTTP request messages and convert them into COM calls that communicate with the application server.

URL includes the protocol (http or https), host name, and scriptname for httpsrvr.dll. Typically, it has the form

http://DataHost.org/scripts/httpsrvr.dll

Note: URL is a standard Uniform Resource Locator. As such, you can also use it to override the port associated with http (80) or https (443) if the Web server is configured differently. The port number follows the host name, preceded by a colon.

See Also