Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Glacier Upload ArchiveDemonstrates how to add an archive to a vault. For a successful upload, your data is durably persisted. In response, Amazon S3 Glacier (Glacier) returns the archive ID in the x-amz-archive-id header of the response. You should save the archive ID returned so that you can access the archive later. Note: This example requires Chilkat v9.5.0.78 or greater.
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example requires the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @rest int -- Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Rest', @rest OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END -- Connect to the Amazon AWS REST server in the desired region. DECLARE @bTls int SELECT @bTls = 1 DECLARE @port int SELECT @port = 443 DECLARE @bAutoReconnect int SELECT @bAutoReconnect = 1 DECLARE @success int EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'glacier.us-west-2.amazonaws.com', @port, @bTls, @bAutoReconnect -- Provide AWS credentials. DECLARE @authAws int -- Use "Chilkat_9_5_0.AuthAws" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.AuthAws', @authAws OUT EXEC sp_OASetProperty @authAws, 'AccessKey', 'AWS_ACCESS_KEY' EXEC sp_OASetProperty @authAws, 'SecretKey', 'AWS_SECRET_KEY' EXEC sp_OASetProperty @authAws, 'ServiceName', 'glacier' EXEC sp_OASetProperty @authAws, 'Region', 'us-west-2' EXEC sp_OAMethod @rest, 'SetAuthAws', @success OUT, @authAws -- -------------------------------------------------------------------------- -- Note: The above REST connection and setup of the AWS credentials -- can be done once. After connecting, any number of REST calls can be made. -- The "auto reconnect" property passed to rest.Connect indicates that if -- the connection is lost, a REST method call will automatically reconnect -- if needed. -- -------------------------------------------------------------------------- -- -- For more information, see Glacier Upload Archive Reference Documentation -- EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'x-amz-glacier-version', '2012-06-01' -- We'll need to pre-compute the SHA256 tree hash and the SHA256 linear hash. -- The hashes are added in the following request headers: -- x-amz-sha256-tree-hash: SHA256 tree hash -- x-amz-content-sha256: SHA256 linear hash -- The file we'll be uploading DECLARE @filePath nvarchar(4000) SELECT @filePath = 'qa_data/zips/somethingBig.zip' DECLARE @crypt int -- Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Crypt2', @crypt OUT EXEC sp_OASetProperty @crypt, 'HashAlgorithm', 'sha256-tree-hash' EXEC sp_OASetProperty @crypt, 'EncodingMode', 'hexlower' DECLARE @treeHashHex nvarchar(4000) EXEC sp_OAMethod @crypt, 'HashFileENC', @treeHashHex OUT, @filePath EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'x-amz-sha256-tree-hash', @treeHashHex EXEC sp_OASetProperty @crypt, 'HashAlgorithm', 'sha256' DECLARE @linearHashHex nvarchar(4000) EXEC sp_OAMethod @crypt, 'HashFileENC', @linearHashHex OUT, @filePath EXEC sp_OASetProperty @authAws, 'PrecomputedSha256', @linearHashHex -- We can optionally add a description -- In this case, we'll set the description equal to the local filepath of the file we're uploading. EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'x-amz-archive-description', @filePath -- Upload the file to the vault named "chilkat" DECLARE @fileStream int -- Use "Chilkat_9_5_0.Stream" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Stream', @fileStream OUT EXEC sp_OASetProperty @fileStream, 'SourceFile', @filePath -- May need to increase the timeout if this is a really large file.. EXEC sp_OASetProperty @rest, 'IdleTimeoutMs', 120000 -- Add an Expect: 100-continue request header EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Expect', '100-continue' DECLARE @responseStr nvarchar(4000) EXEC sp_OAMethod @rest, 'FullRequestStream', @responseStr OUT, 'POST', '/AWS_ACCOUNT_ID/vaults/chilkat/archives', @fileStream EXEC sp_OAGetProperty @rest, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 <> 1 BEGIN EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @rest EXEC @hr = sp_OADestroy @authAws EXEC @hr = sp_OADestroy @crypt EXEC @hr = sp_OADestroy @fileStream RETURN END DECLARE @respStatusCode int EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @respStatusCode OUT IF @respStatusCode >= 400 BEGIN PRINT 'Response Status Code = ' + @respStatusCode PRINT 'Response Header:' EXEC sp_OAGetProperty @rest, 'ResponseHeader', @sTmp0 OUT PRINT @sTmp0 PRINT 'Response Body:' PRINT @responseStr EXEC @hr = sp_OADestroy @rest EXEC @hr = sp_OADestroy @authAws EXEC @hr = sp_OADestroy @crypt EXEC @hr = sp_OADestroy @fileStream RETURN END -- Success is indicated by a 201 response status with an empty response body. PRINT 'response status code = ' + @respStatusCode -- If successful, the response header looks like this. -- The Location and x-amz-archive-id are two items of information we may wish to save.. -- HTTP/1.1 201 Created -- x-amzn-RequestId: AAABZpJrTyioDC_HsOmHae8EZp_uBSJr6cnGOLKp_XJCl-Q -- Date: Wed, 10 Feb 2017 12:00:00 GMT -- x-amz-sha256-tree-hash: beb0fe31a1c7ca8c6c04d574ea906e3f97b31fdca7571defb5b44dca89b5af60 -- Location: /111122223333/vaults/examplevault/archives/NkbByEejwEggmBz2fTH ... GlqrEXAMPLEArchiveId -- x-amz-archive-id: NkbByEejwEggmBz2fTHgJrg0XBoDfjP4q6iu87-TjhqG6eGoOY9Z8i1_AUyUsu ... BfGlqrEXAMPLEArchiveId -- DECLARE @archiveId nvarchar(4000) EXEC sp_OAMethod @rest, 'ResponseHdrByName', @archiveId OUT, 'x-amz-archive-id' PRINT 'x-amz-archive-id = ' + @archiveId DECLARE @location nvarchar(4000) EXEC sp_OAMethod @rest, 'ResponseHdrByName', @location OUT, 'Location' PRINT 'Location = ' + @location EXEC @hr = sp_OADestroy @rest EXEC @hr = sp_OADestroy @authAws EXEC @hr = sp_OADestroy @crypt EXEC @hr = sp_OADestroy @fileStream END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.