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

PowerBuilder 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

 

 

 

(PowerBuilder) 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

integer li_rc
oleobject loo_ChilkatGlob
integer li_Success
oleobject loo_Ftp
oleobject loo_TaskChain
oleobject loo_Task
string ls_LocalFilename
string ls_RemoteFilename
integer li_NumTasks
integer li_TaskIdx

// All Chilkat classes can be unlocked at once at the beginning of a program
// by calling UnlockBundle.  It requires a Bundle unlock code.
loo_ChilkatGlob = create oleobject
li_rc = loo_ChilkatGlob.ConnectToNewObject("Chilkat_9_5_0.Global")
if li_rc < 0 then
    destroy loo_ChilkatGlob
    MessageBox("Error","Connecting to COM object failed")
    return
end if
li_Success = loo_ChilkatGlob.UnlockBundle("Anything for 30-day trial.")
if li_Success <> 1 then
    Write-Debug loo_ChilkatGlob.LastErrorText
    destroy loo_ChilkatGlob
    return
end if

loo_Ftp = create oleobject
li_rc = loo_Ftp.ConnectToNewObject("Chilkat_9_5_0.Ftp2")

loo_Ftp.Hostname = "ftp.someFtpServer.com"
loo_Ftp.Username = "****"
loo_Ftp.Password = "****"

// Connect and login to the FTP server.
li_Success = loo_Ftp.Connect()
if li_Success <> 1 then
    Write-Debug loo_Ftp.LastErrorText
    destroy loo_ChilkatGlob
    destroy loo_Ftp
    return
end if

loo_TaskChain = create oleobject
li_rc = loo_TaskChain.ConnectToNewObject("Chilkat_9_5_0.TaskChain")

// Create a task to change to the remote directory where the file will be uploaded.
loo_Task = loo_Ftp.ChangeRemoteDirAsync("junk")
if loo_Ftp.LastMethodSuccess = 0 then
    Write-Debug loo_Ftp.LastErrorText
    destroy loo_ChilkatGlob
    destroy loo_Ftp
    destroy loo_TaskChain
    return
end if

// Add this task to the task chain.
li_Success = loo_TaskChain.Append(loo_Task)
destroy loo_Task

// Create a task to upload a file.
ls_LocalFilename = "c:/temp/hamlet.xml"
ls_RemoteFilename = "hamlet.xml"

loo_Task = loo_Ftp.PutFileAsync(ls_LocalFilename,ls_RemoteFilename)
if loo_Ftp.LastMethodSuccess = 0 then
    Write-Debug loo_Ftp.LastErrorText
    destroy loo_ChilkatGlob
    destroy loo_Ftp
    destroy loo_TaskChain
    return
end if

// Add this task to the task chain.
li_Success = loo_TaskChain.Append(loo_Task)
destroy loo_Task

// 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.
loo_TaskChain.StopOnFailedTask = 1
li_Success = loo_TaskChain.Run()
if not li_Success then
    Write-Debug loo_TaskChain.LastErrorText
    destroy loo_ChilkatGlob
    destroy loo_Ftp
    destroy loo_TaskChain
    return
end if

// 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. 
do while loo_TaskChain.Finished <> 1

    // Sleep 100 ms.
    loo_TaskChain.SleepMs(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:
if loo_TaskChain.StatusInt <> 7 then
    Write-Debug "Task did not complete."
    Write-Debug "task chain status: " + loo_TaskChain.Status
    destroy loo_ChilkatGlob
    destroy loo_Ftp
    destroy loo_TaskChain
    return
end if

// 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..
li_NumTasks = loo_TaskChain.NumTasks
li_TaskIdx = 0

do while (li_TaskIdx < li_NumTasks)

    loo_Task = loo_TaskChain.GetTask(li_TaskIdx)

    // 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.
    Write-Debug "task status: " + loo_Task.Status
    Write-Debug "task log: " + loo_Task.ResultErrorText

    destroy loo_Task

    li_TaskIdx = li_TaskIdx + 1
loop

li_Success = loo_Ftp.Disconnect()


destroy loo_ChilkatGlob
destroy loo_Ftp
destroy loo_TaskChain

 

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