Xbase++
Xbase++
Download a Text File into a String
See more Azure Cloud Storage Examples
Downloads a text file to a string variable.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oRest
LOCAL nBTls
LOCAL nPort
LOCAL nBAutoReconnect
LOCAL oAzAuth
LOCAL oSbFileContents
LOCAL cStrFileContents
nSuccess := 0
// Azure File Service Example: Download Text File into String
// See: https://docs.microsoft.com/en-us/rest/api/storageservices/get-file
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
oRest := CreateObject("Chilkat.Rest")
// Connect to the Azure Storage Blob Service
nBTls := 1
nPort := 443
nBAutoReconnect := 1
// In this example, the storage account name is "chilkat".
nSuccess := oRest:Connect("chilkat.file.core.windows.net", nPort, nBTls, nBAutoReconnect)
IF (nSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
RETURN
ENDIF
// Provide Azure Cloud credentials for the REST calls.
oAzAuth := CreateObject("Chilkat.AuthAzureStorage")
oAzAuth:AccessKey := "AZURE_ACCESS_KEY"
// The account name used here should match the 1st part of the domain passed in the call to Connect (above).
oAzAuth:Account := "chilkat"
oAzAuth:Scheme := "SharedKey"
oAzAuth:Service := "File"
// This causes the "x-ms-version: 2021-08-06" header to be automatically added.
oAzAuth:XMsVersion := "2021-08-06"
nSuccess := oRest:SetAuthAzureStorage(oAzAuth)
// Note: The application does not need to explicitly set the following
// headers: x-ms-date, Authorization. These headers
// are automatically set by Chilkat.
// Send a GET request to download the file "hamlet.xml" to a StringBuilder object.
// (The share name is "pip")
oSbFileContents := CreateObject("Chilkat.StringBuilder")
nSuccess := oRest:FullRequestNoBodySb("GET", "/pip/xmlFiles/hamlet.xml", oSbFileContents)
IF (nSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
oAzAuth:destroy()
oSbFileContents:destroy()
RETURN
ENDIF
// When successful, the response status will be 200.
// If a non-success status code is returned, then the sbFileContents actually contains the XML error message.
IF (oRest:ResponseStatusCode != 200)
// Examine the request/response to see what happened.
? "response status code = " + Str(oRest:ResponseStatusCode)
? "response status text = " + oRest:ResponseStatusText
? "response header: " + oRest:ResponseHeader
? "response body (if any): " + oSbFileContents:GetAsString()
? "---"
? "LastRequestStartLine: " + oRest:LastRequestStartLine
? "LastRequestHeader: " + oRest:LastRequestHeader
oRest:destroy()
oAzAuth:destroy()
oSbFileContents:destroy()
RETURN
ENDIF
? "Length of downloaded string = " + Str(oSbFileContents:Length)
cStrFileContents := oSbFileContents:GetAsString()
? cStrFileContents
oSbFileContents:WriteFile("qa_output/hamlet.xml", "utf-8", 0)
oRest:destroy()
oAzAuth:destroy()
oSbFileContents:destroy()