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) Transfer a File using Sockets (TLS or non-TLS)

Demonstrates how to two programs, one a socket writer and the other a socket reader, can transfer a file. The connection can be TLS or a regular non-encrypted TCP connection.

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.

    -- On the sending side, we'll load the file into a BinData object and send.
    -- On the receiving side, we'll read from the socket connection into a BinData, and save to a file.
    -- This example assumes the file is not crazy-large, and that the entire contents
    -- can fit into memory.  
    -- (If the file is too large for memory, there are other ways to send. It just involves streaming or 
    -- sending the file chunk-by-chunk..)

    -- This section of code is for the sender.
    DECLARE @bdToSend int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.BinData', @bdToSend OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int
    EXEC sp_OAMethod @bdToSend, 'LoadFile', @success OUT, 'somePath/someFile.dat'
    -- Assume success for the example...

    DECLARE @sndSock int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Socket', @sndSock OUT

    DECLARE @bUseTls int
    SELECT @bUseTls = 1
    DECLARE @port int
    SELECT @port = 5555
    DECLARE @maxWaitMs int
    SELECT @maxWaitMs = 5000
    EXEC sp_OAMethod @sndSock, 'Connect', @success OUT, 'some_domain_or_ip.com', @port, @bUseTls, @maxWaitMs
    -- Assume success for the example...

    -- Tell the receiver how many bytes are coming.
    DECLARE @numBytes int
    EXEC sp_OAGetProperty @bdToSend, 'NumBytes', @numBytes OUT
    DECLARE @bBigEndian int
    SELECT @bBigEndian = 1
    EXEC sp_OAMethod @sndSock, 'SendInt32', @success OUT, @numBytes, @bBigEndian

    -- Send the file data (sends the entire contents of bdToSend).
    EXEC sp_OAMethod @sndSock, 'SendBd', @success OUT, @bdToSend, 0, 0

    -- Get an acknowledgement.
    EXEC sp_OAMethod @sndSock, 'ReceiveInt32', @success OUT, @bBigEndian
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @sndSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        RETURN
      END

    -- Did the receiver get the correct number of bytes?
    EXEC sp_OAGetProperty @sndSock, 'ReceivedInt', @iTmp0 OUT
    IF @iTmp0 <> @numBytes
      BEGIN

        PRINT 'The receiver did not acknowledge with the correct number of bytes.'
        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        RETURN
      END


    PRINT 'File sent!'

    -- ------------------------------------------------------------------------------------
    -- The code below is for the receiving side (running on some other computer..)

    DECLARE @listenSock int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Socket', @listenSock OUT

    EXEC sp_OAMethod @listenSock, 'BindAndListen', @success OUT, 5555, 25
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @listenSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        EXEC @hr = sp_OADestroy @listenSock
        RETURN
      END

    -- Get the next incoming connection
    -- Wait a maximum of 20 seconds (20000 millisec)
    DECLARE @rcvSock int

    EXEC sp_OAMethod @listenSock, 'AcceptNextConnection', @rcvSock OUT, 20000
    EXEC sp_OAGetProperty @listenSock, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @listenSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        EXEC @hr = sp_OADestroy @listenSock
        RETURN
      END

    -- The sender will first send the big-endian integer for the number of bytes
    -- that are forthcoming..
    EXEC sp_OAMethod @rcvSock, 'ReceiveInt32', @success OUT, @bBigEndian
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rcvSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rcvSock

        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        EXEC @hr = sp_OADestroy @listenSock
        RETURN
      END

    DECLARE @numBytesComing int
    EXEC sp_OAGetProperty @rcvSock, 'ReceivedInt', @numBytesComing OUT

    -- Receive that many bytes..
    DECLARE @bdReceived int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.BinData', @bdReceived OUT

    EXEC sp_OAMethod @rcvSock, 'ReceiveBdN', @success OUT, @numBytesComing, @bdReceived
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rcvSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rcvSock

        EXEC @hr = sp_OADestroy @bdToSend
        EXEC @hr = sp_OADestroy @sndSock
        EXEC @hr = sp_OADestroy @listenSock
        EXEC @hr = sp_OADestroy @bdReceived
        RETURN
      END

    -- Acknowledge the sender by sending back the number of bytes we received.
    EXEC sp_OAGetProperty @bdReceived, 'NumBytes', @iTmp0 OUT
    EXEC sp_OAMethod @rcvSock, 'SendInt32', @success OUT, @iTmp0, @bBigEndian

    -- Close the connection.
    DECLARE @maxWaitMs int
    SELECT @maxWaitMs = 20
    EXEC sp_OAMethod @rcvSock, 'Close', @success OUT, @maxWaitMs
    EXEC @hr = sp_OADestroy @rcvSock

    -- Save the received data to a file.
    EXEC sp_OAMethod @bdReceived, 'WriteFile', @success OUT, 'somePath/someFile.dat'
    -- Assume success for the example...


    PRINT 'File received!'

    EXEC @hr = sp_OADestroy @bdToSend
    EXEC @hr = sp_OADestroy @sndSock
    EXEC @hr = sp_OADestroy @listenSock
    EXEC @hr = sp_OADestroy @bdReceived


END
GO

 

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