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

DataFlex 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

 

 

 

(DataFlex) Async Task Chain (another example)

Demonstrates using a task chain to run a sequence of FTP tasks asynchronously.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoChilkatGlob
    Boolean iSuccess
    Handle hoFtp
    Handle hoTaskChain
    Variant vTask
    Handle hoTask
    String sLocalFilename
    String sRemoteFilename
    Integer iNumTasks
    Integer iTaskIdx
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

    // All Chilkat classes can be unlocked at once at the beginning of a program
    // by calling UnlockBundle.  It requires a Bundle unlock code.
    Get Create (RefClass(cComChilkatGlobal)) To hoChilkatGlob
    If (Not(IsComObjectCreated(hoChilkatGlob))) Begin
        Send CreateComObject of hoChilkatGlob
    End
    Get ComUnlockBundle Of hoChilkatGlob "Anything for 30-day trial." To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoChilkatGlob To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatFtp2)) To hoFtp
    If (Not(IsComObjectCreated(hoFtp))) Begin
        Send CreateComObject of hoFtp
    End

    Set ComHostname Of hoFtp To "ftp.someFtpServer.com"
    Set ComUsername Of hoFtp To "****"
    Set ComPassword Of hoFtp To "****"

    // Connect and login to the FTP server.
    Get ComConnect Of hoFtp To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoFtp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatTaskChain)) To hoTaskChain
    If (Not(IsComObjectCreated(hoTaskChain))) Begin
        Send CreateComObject of hoTaskChain
    End

    // Create a task to change to the remote directory where the file will be uploaded.
    Get ComChangeRemoteDirAsync Of hoFtp "junk" To vTask
    If (IsComObject(vTask)) Begin
        Get Create (RefClass(cComChilkatTask)) To hoTask
        Set pvComObject Of hoTask To vTask
    End
    Get ComLastMethodSuccess Of hoFtp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoFtp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Add this task to the task chain.
    Get ComAppend Of hoTaskChain vTask To iSuccess
    Send Destroy of hoTask

    // Create a task to upload a file.
    Move "c:/temp/hamlet.xml" To sLocalFilename
    Move "hamlet.xml" To sRemoteFilename

    Get ComPutFileAsync Of hoFtp sLocalFilename sRemoteFilename To vTask
    If (IsComObject(vTask)) Begin
        Get Create (RefClass(cComChilkatTask)) To hoTask
        Set pvComObject Of hoTask To vTask
    End
    Get ComLastMethodSuccess Of hoFtp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoFtp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Add this task to the task chain.
    Get ComAppend Of hoTaskChain vTask To iSuccess
    Send Destroy of hoTask

    // Start the task chain running in a background thread.
    // Each task is run one after the other (on the same background thread) until all tasks have completed.
    // The task chain will stop at the first task that fails.
    Set ComStopOnFailedTask Of hoTaskChain To True
    Get ComRun Of hoTaskChain To iSuccess
    If (Not iSuccess) Begin
        Get ComLastErrorText Of hoTaskChain To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // The application is now free to do anything else
    // while the FTP commands are being run...

    // For this example, we'll simply sleep and periodically
    // check to see if the taskchain if finished. 
    While ((ComFinished(hoTaskChain)) <> True)

        // Sleep 100 ms.
        Send ComSleepMs To hoTaskChain 100

    Loop

    // A finished task chain could be one that was canceled, aborted, or truly finished.  

    // If the task chain "completed", then it ran to completion.  A "completed" task will
    // have a StatusInt equal to 7.   If the task finished, but was not completed, then it must've
    // been aborted or canceled:
    Get ComStatusInt Of hoTaskChain To iTemp1
    If (iTemp1 <> 7) Begin
        Showln "Task did not complete."
        Get ComStatus Of hoTaskChain To sTemp1
        Showln "task chain status: " sTemp1
        Procedure_Return
    End

    // If we got to this point, the ChangeRemoteDir and PutFile were successful.
    // We can visually verify by examining the LastErrorText that was recorded for each
    // of these method calls..
    Get ComNumTasks Of hoTaskChain To iNumTasks
    Move 0 To iTaskIdx

    While (iTaskIdx < iNumTasks)

        Get ComGetTask Of hoTaskChain iTaskIdx To vTask
        If (IsComObject(vTask)) Begin
            Get Create (RefClass(cComChilkatTask)) To hoTask
            Set pvComObject Of hoTask To vTask
        End

        // Examine the status of this task, and the ResultErrorText
        // (the ResultErrorText is the ftp.LastErrorText captured for FTP method called by the task).
        // Everything should indicate success.
        Get ComStatus Of hoTask To sTemp1
        Showln "task status: " sTemp1
        Get ComResultErrorText Of hoTask To sTemp1
        Showln "task log: " sTemp1

        Send Destroy of hoTask

        Move iTaskIdx + 1 To iTaskIdx
    Loop

    Get ComDisconnect Of hoFtp To iSuccess


End_Procedure

 

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