Qore xml Module
1.6.0
|
contains helper methods for retrieving WSDLs from a URL More...
Static Public Member Methods | |
static data | getFile (string fn, bool as_string=True) |
retrieves a local file and returns the file's contents as a string More... | |
static string | getHTTP (string url, *string path, *HTTPClient hc, *hash< auto > headers, bool as_string=True) |
retrieves a file from a URL with HTTP and returns the file's contents as a string More... | |
static data | getFTP (string url, string path, bool as_string=True) |
retrieves a file from a URL with the FTP protocol and returns the file's contents as binary or string data More... | |
static data | getFileFromURL (string url, string def_protocol="file", *HTTPClient http_client, *hash< auto > http_headers, bool as_string=True, *string def_path, *reference new_def_path) |
retrieves a file from a URL More... | |
Public Attributes | |
const | SoapMimeTypes = (MimeTypeSoapXml, MimeTypeXml, MimeTypeXmlApp) |
Mime types recognized as SOAP messages. | |
contains helper methods for retrieving WSDLs from a URL
|
static |
retrieves a local file and returns the file's contents as a string
called by WSDLLib::getFileFromURL() in case the scheme is "file"
|
inlinestatic |
retrieves a file from a URL
in case the URL is actually a file path, environment variable substitution is performed on the path string
FileLocationHandler
module to retrieve file data for all schemes except "file://"
and "http(s)://"
, which uses WSDLLib::getFileFromUrl() and WSDLLib::getHTTP() respectively for backwards compatibility
|
static |
retrieves a file from a URL with the FTP protocol and returns the file's contents as binary or string data
called by WSDLLib::getFileFromURL() in case the scheme is "ftp"
|
static |
retrieves a file from a URL with HTTP and returns the file's contents as a string
called by WSDLLib::getFileFromURL() in case the scheme is "http"