RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DataBkr.EnableWebTransport Function

Registers a remote data module so clients can access it using a Web connection.

Pascal
procedure EnableWebTransport(const ClassID: string);
C++
EnableWebTransport(const AnsiString ClassID);

When working in Delphi, the remote data module Wizard automatically adds a call to EnableWebTransport to the overridden UpdateRegistry method of the new remote data module class. This adds the registry entries that httpsrvr.dll uses to check whether clients can access the application server. The registry entries are removed by a call to DisableWebTransport (also added to UpdateRegistry). 

To make an application server unavailable to HTTP-based connections, remove these two calls from UpdateRegistry. The application server can still receive requests over connections formed using other protocols. 

ClassID is the class ID of the remote data module. This value is passed as a parameter to the UpdateRegistry method that calls DisableSocketTransport

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!