(Classic ASP) Wasabi Delete Bucket Objects
Demonstrates how to delete one or more objects in a bucket.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
set http = Server.CreateObject("Chilkat_9_5_0.Http")
' Insert your access key here:
http.AwsAccessKey = "access-key"
' Insert your secret key here:
http.AwsSecretKey = "secret-key"
' Use the endpoint matching the bucket's region.
http.AwsEndpoint = "s3.us-west-1.wasabisys.com"
bucketName = "chilkattest"
objectName1 = "seahorse.jpg"
objectName2 = "seahorse2.jpg"
set sa = Server.CreateObject("Chilkat_9_5_0.StringArray")
success = sa.Append(objectName1)
success = sa.Append(objectName2)
' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.S3_DeleteMultipleObjects(bucketName,sa)
If (http.LastMethodSuccess = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
Response.End
End If
Response.Write "<pre>" & Server.HTMLEncode( "Response status code = " & http.LastStatus) & "</pre>"
' Display the XML response.
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"
%>
</body>
</html>
|