Datasnap.Win.SConnect.TWebConnection.URL

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Datasnap.Win.SConnect.pas
Datasnap.Win.SConnect.hpp
Unit: Datasnap.Win.SConnect
Parent: TWebConnection

Delphi

property URL: string read FURL write SetURL stored IsURLStored;

C++

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

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