Soap.SOAPHTTPClient.THTTPRIO.Service

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Service: string read GetService write SetService;

C++

__property System::UnicodeString Service = {read=GetService, write=SetService};

Properties

Type Visibility Source Unit Parent
property published
Soap.SOAPHTTPClient.pas
Soap.SOAPHTTPClient.hpp
Soap.SOAPHTTPClient THTTPRIO

Description

Specifies the Service to use when sending the SOAP message to execute a method call.

Set Service to indicate the Service that you want to use by making a remote method call. Service is the name of a Service defined in the WSDL document specified by the WSDLLocation property. Once you have set the WSDLLocation property, you can select a value for Service from a drop-down list in the Object Inspector.

A Service is a set of related interfaces provided by a Web Service application. The interface that THTTPRIO represents must be on one of the interfaces that make up the specified service.

Note: When defining the target Web Service application by referring to a WSDL document, you must set the Port property as well as the Service and WSDLLocation properties.

See Also