Datasnap.Xmlxform.TXMLTransformClient.ProviderName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ProviderName: string read GetProviderName write SetProviderName;

C++

__property System::UnicodeString ProviderName = {read=GetProviderName, write=SetProviderName};

Properties

Type Visibility Source Unit Parent
property published
Datasnap.Xmlxform.pas
Datasnap.Xmlxform.hpp
Datasnap.Xmlxform TXMLTransformClient

Description

Specifies the name of a provider component that supplies data to and applies updates from the XML transform client.

Use ProviderName to specify the provider object that supplies the XML transform client with data packets and applies updates on its behalf. This property is passed as a parameter to IAppServer interface calls when the client fetches data from or applies updates to the source dataset, its database server, or the source XML document.

The provider specified by ProviderName can reside in the same application as the XML transform client or in an application server running on another system.

If the provider is in the same application as the XML transform client, it must have the same Owner as the client.

If the provider is on a remote application server, it must be exported by that application server. If the application server contains multiple provider objects, you can set ProviderName to any of them once the XML transform client establishes an initial connection to the application server through its RemoteServer property.

ProviderName can be set from a drop-down in the Object Inspector once the RemoteServer property is set if

The connection component is a SOAP connection.

The connection component is a Web connection or socket connection (Windows only).

The application server is COM-based and registered on the client system using TRegsvr.exe (Windows only).

See Also