Classic ASP
Classic ASP
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 Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
set rest = Server.CreateObject("Chilkat.Rest")
bTls = 1
bAutoReconnect = 1
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
Response.End
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 = Server.CreateObject("Chilkat.BinData")
bLoaded = bdRequest.LoadFile("qa_data/image.png")
If (bLoaded <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( "Failed to load the request body file.") & "</pre>"
Response.End
End If
success = rest.AddHeader("Content-Type","image/png")
set sbResponse = Server.CreateObject("Chilkat.StringBuilder")
success = rest.FullRequestBd("PUT","/api/images/1",bdRequest,sbResponse)
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
Response.End
End If
responseText = sbResponse.GetAsString()
If (sbResponse.LastMethodSuccess = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( sbResponse.LastErrorText) & "</pre>"
Response.End
End If
Response.Write "<pre>" & Server.HTMLEncode( responseText) & "</pre>"
%>
</body>
</html>