Visual Basic 6.0
Visual Basic 6.0
Wasabi Upload String
See more Wasabi Examples
Demonstrates how to upload the contents of a string to create an object in a Wasabi bucket.Chilkat Visual Basic 6.0 Downloads
Dim success As Long
success = 0
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
' Insert your access key here:
http.AwsAccessKey = "access-key"
' Insert your secret key here:
http.AwsSecretKey = "secret-key"
http.AwsEndpoint = "s3.wasabisys.com"
Dim bucketName As String
bucketName = "chilkattest"
Dim objectName As String
objectName = "orchard.json"
Dim contentType As String
contentType = "application/json"
http.KeepResponseBody = 1
' Let's say we have JSON in a string and want to upload it to a file in Wasabi..
Dim jsonStr As String
jsonStr = "{ ""orchard"": ""apple"" }"
' The charset indicates the byte representation of what is uploaded.
' If needed, Chilkat will internally convert to the desired byte representation before uploading.
Dim charset As String
charset = "utf-8"
success = http.S3_UploadString(jsonStr,charset,contentType,bucketName,objectName)
If (success <> 1) Then
Debug.Print http.LastErrorText
Dim xml As New ChilkatXml
success = xml.LoadXml(http.LastResponseBody)
Debug.Print xml.GetXml()
Else
Debug.Print "String uploaded."
End If