Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(SQL Server) Parse Multipart Binary Http Response

This example demonstrates how to parse an HTTP response that is multipart and contains a binary file, such as a .zip or .pdf.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// 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
    DECLARE @sTmp0 nvarchar(4000)
    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @success int

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @req int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.HttpRequest', @req OUT

    -- ...
    -- Insert code here to construct some kind of HTTP request.
    -- this example is to show how to parse a particular kind of response.
    -- ...
    -- ...

    -- Send the request (whatever it may be in your case) to get the HTTP response object.
    DECLARE @resp int
    EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'www.somedomain.com', 443, 1, @req
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 <> 1
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        RETURN
      END

    -- Get the response body (which is expected to be binary)
    DECLARE @respBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.BinData', @respBody OUT

    EXEC sp_OAMethod @resp, 'GetBodyBd', @success OUT, @respBody
    EXEC @hr = sp_OADestroy @resp

    -- For this example, the response body contains something like this:

    -- ------=_Part_21302_2029949381.1547401515443
    -- Content-Type: application/xop+xml; charset=UTF-8; type="text/xml"
    -- Content-Transfer-Encoding: 8bit
    -- Content-ID: <rootpart@ws.jboss.org>
    -- 
    -- <env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Header></env:Header><env:Body>...</env:Body></env:Envelope>
    -- ------=_Part_21302_2029949381.1547401515443
    -- Content-Type: application/octet-stream
    -- Content-Transfer-Encoding: binary
    -- Content-Id: <fileArchivio-7d302908-4d64-43d3-bf4e-79ce806d43b3@ws.jboss.org>
    -- 
    -- BINARY_CONTENT_HERE...
    -- 
    -- ------=_Part_21302_2029949381.1547401515443--
    -- 

    -- Load it into a Chilkat MIME object.
    DECLARE @mime int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Mime', @mime OUT

    EXEC sp_OAMethod @mime, 'LoadMimeBd', @success OUT, @respBody
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @mime, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        EXEC @hr = sp_OADestroy @respBody
        EXEC @hr = sp_OADestroy @mime
        RETURN
      END

    DECLARE @numParts int
    EXEC sp_OAGetProperty @mime, 'NumParts', @numParts OUT
    IF @numParts < 2
      BEGIN

        PRINT 'Expected multipart MIME with at least 2 sub-parts.'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        EXEC @hr = sp_OADestroy @respBody
        EXEC @hr = sp_OADestroy @mime
        RETURN
      END

    -- Get the 1st sub-part, which is the XML.
    DECLARE @part0 int
    EXEC sp_OAMethod @mime, 'GetPart', @part0 OUT, 0
    -- Should be OK because we checked NumParts above..
    DECLARE @xmlStr nvarchar(4000)
    EXEC sp_OAMethod @part0, 'GetBodyDecoded', @xmlStr OUT

    PRINT @xmlStr

    PRINT '----'
    EXEC @hr = sp_OADestroy @part0

    -- Save the 2nd part to a file.  (It is a .zip file in our test case..)
    DECLARE @part1 int
    EXEC sp_OAMethod @mime, 'GetPart', @part1 OUT, 1
    EXEC sp_OAMethod @part1, 'SaveBody', @success OUT, 'qa_output/attachedZip.zip'

    -- Alternatively, we could extract the binary data to a BinData and use elsewhere..
    DECLARE @zipData int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.BinData', @zipData OUT

    EXEC sp_OAMethod @part1, 'GetBodyBd', @success OUT, @zipData
    EXEC sp_OAMethod @zipData, 'WriteFile', @success OUT, 'qa_output/attachedZip_again.zip'
    EXEC @hr = sp_OADestroy @part1


    PRINT 'OK.'

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @req
    EXEC @hr = sp_OADestroy @respBody
    EXEC @hr = sp_OADestroy @mime
    EXEC @hr = sp_OADestroy @zipData


END
GO

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.