PowerBuilder
PowerBuilder
Upload a Blob using a Container’s Shared Access Signature
See more Azure Cloud Storage Examples
Shows how to upload an Azure blob using a URL with a shared access signature.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
string ls_Url
oleobject loo_Http
oleobject loo_Resp
integer li_StatusCode
string ls_Url2
li_Success = 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// To upload a file we're simply sending a PUT with the content of the data. For example:
// PUT https://myaccount.blob.core.windows.net/pictures/photo.jpg?sv=2015-02-21&st=2015-07-01T08%3a49Z&se=2015-07-02T08%3a49Z& sr=c&sp=w&si=YWJjZGVmZw%3d%3d&sig=Rcp6gQRfV7WDlURdVTqCa%2bqEArnfJxDgE%2bKH3TCChIs%3d HTTP/1.1
// Host: myaccount.blob.core.windows.net
//
// Content-Length: 12
//
// Hello World.
// Upload a string to a helloWorld.txt file in the "mycontainer" container, in the "chilkat" account.
ls_Url = "https://chilkat.blob.core.windows.net/mycontainer/helloWorld.txt?sv=2021-06-08&ss=bfqt&srt=sco&sp=rwdlacupiyx&se=2023-02-12T21:30:53Z&st=2023-02-12T13:30:53Z&spr=https&sig=HB8CoZiD7EJD1rQNIVnLl%2Bq7kyLcOCnSXR14TadBv6s%3D"
loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Http.SetRequestHeader("x-ms-blob-type","BlockBlob")
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")
li_Success = loo_Http.HttpStr("PUT",ls_Url,"Hello World.","utf-8","text/plain",loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Resp
return
end if
li_StatusCode = loo_Resp.StatusCode
Write-Debug "response status code: " + string(li_StatusCode)
Write-Debug "response status text: " + loo_Resp.StatusText
if li_StatusCode = 201 then
Write-Debug "Success."
else
Write-Debug "Failed."
end if
// -------------------------------------------------------------------------------------------------
// Upload from a file...
// Upload a binar file to a penguins.jpg file in the "mycontainer" container, in the "chilkat" account.
ls_Url2 = "https://chilkat.blob.core.windows.net/mycontainer/penguins.jpg?sv=2021-06-08&ss=bfqt&srt=sco&sp=rwdlacupiyx&se=2023-02-12T21:30:53Z&st=2023-02-12T13:30:53Z&spr=https&sig=HB8CoZiD7EJD1rQNIVnLl%2Bq7kyLcOCnSXR14TadBv6s%3D"
loo_Http.ClearHeaders()
loo_Http.SetRequestHeader("x-ms-blob-type","BlockBlob")
// Upload a JPG file
li_Success = loo_Http.HttpFile("PUT",ls_Url2,"c:/qa_data/jpg/penguins.jpg","image/jpeg",loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Resp
return
end if
li_StatusCode = loo_Resp.StatusCode
Write-Debug "response status code: " + string(li_StatusCode)
Write-Debug "response status text: " + loo_Resp.StatusText
if li_StatusCode = 201 then
Write-Debug "Success."
else
Write-Debug "Failed."
end if
destroy loo_Http
destroy loo_Resp