VBScript
VBScript
Send a REST Request with a Binary Body
See more REST Examples
Demonstrates Rest.FullRequestBd, which sends a complete request whose binary body is read from a BinData and stores the text response body in a StringBuilder.
The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background. FullRequestBd is used when the request payload is binary, such as an image or other file, while the response is textual (for example a JSON acknowledgement).
Chilkat VBScript Downloads
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
success = 0
set rest = CreateObject("Chilkat.Rest")
bTls = 1
bAutoReconnect = 1
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
If (success = 0) Then
outFile.WriteLine(rest.LastErrorText)
WScript.Quit
End If
' The file paths are relative to the application's current working directory. Absolute paths
' may also be used. Supply the paths appropriate to your own environment.
' FullRequestBd sends a request whose binary body is read from a BinData and stores the text
' response body in a StringBuilder.
set bdRequest = CreateObject("Chilkat.BinData")
bLoaded = bdRequest.LoadFile("qa_data/image.png")
If (bLoaded <> 1) Then
outFile.WriteLine("Failed to load the request body file.")
WScript.Quit
End If
success = rest.AddHeader("Content-Type","image/png")
set sbResponse = CreateObject("Chilkat.StringBuilder")
success = rest.FullRequestBd("PUT","/api/images/1",bdRequest,sbResponse)
If (success = 0) Then
outFile.WriteLine(rest.LastErrorText)
WScript.Quit
End If
responseText = sbResponse.GetAsString()
If (sbResponse.LastMethodSuccess = 0) Then
outFile.WriteLine(sbResponse.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(responseText)
outFile.Close