Soap.SOAPHTTPTrans.THTTPReqResp.URL

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  URL: string read FURL write SetURL;

C++

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

Properties

Type Visibility Source Unit Parent
property published
Soap.SOAPHTTPTrans.pas
Soap.SOAPHTTPTrans.hpp
Soap.SOAPHTTPTrans THTTPReqResp

Description

Specifies the URL that identifies the target interface on the target Web Service application.

URL specifies the URL to which to send the message containing the SOAP request.

When communicating with a Web Service based on an imported WSDL document, the value of URL is deduced from information in a WSDL document, as indicated by the WSDLView property.

Note: In Delphi, you can construct this URL as follows: The path portion must match the target path name of the THTTPSoapDispatcher component on the Web Service application and the protocol portion must specify http or https.

See Also