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

VBScript 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

 

 

 

(VBScript) XML Path Performance Optimizations

Discusses some important things to know about using Chilkat paths in the Chilkat XML API.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

set xml = CreateObject("Chilkat_9_5_0.Xml")

' Let's load XML containing the following:

' <?xml version="1.0" encoding="utf-8"?>
' <xyz>
'     <licenses>
'         <license>
'             <id>1234</id>
'         </license>
'         <license>
'             <id>1234</id>
'         </license>
' ...
' My sample XML contains 64,000 "license" nodes ..
' ...
'         <license>
'             <id>1234</id>
'         </license>
'         <license>
'             <id>1234</id>
'         </license>
'     </licenses>
' </xyz>
' 
success = xml.LoadXmlFile("qa_output/large.xml")
If (success <> 1) Then
    outFile.WriteLine(xml.LastErrorText)
    WScript.Quit
End If

' Iterating over the individual "license" nodes with this code snippet is
' extremely slow:
licCount = xml.NumChildrenHavingTag("licenses|license")
outFile.WriteLine("license count = " & licCount)

i = 0
' If "10" is changed to licCount, then it becomes apparent that this loop gets slower with each iteration.
Do While i < 10
    xml.I = i
    s = xml.GetChildContent("licenses|license[i]|id")
    outFile.WriteLine(i & ": " & s)
    i = i + 1
Loop

' The reason it is extremely slow is that the "license[i]" part of the path passed to GetChildContent
' says: find the i'th child of "licenses" having the tag "license".  Chilkat cannot assume that all
' children of an XML node have the same tag.  Therefore it's not possible to directly access the i'th child.
' Internally, Chilkat must start at the 1st child and iterate until it reaches the i'th child having the
' tag "license".

' For example, imagine if the XML was like this:

' <?xml version="1.0" encoding="utf-8"?>
' <xyz>
'     <licenses>
'         <license>
'             <id>1234</id>
'         </license>
'         <somethingElse>
'             <a>abc</a>
'         </somethingElse>
'         <license>
'             <id>1234</id>
'         </license>
' ...

' In the above XML, the 1st "license" is the 1st child of "licenses", but the 2nd "license"
' is the 3rd child of "licenses".

' If you already know that all children have the same tag, there is a shortcut that allows
' for direct access to that child.  Just leave off the tag name, like this:

i = 0
' If "10" is changed to licCount, then we can see the time for each loop is the same, and it's fast.
Do While i < 10
    xml.I = i
    s = xml.GetChildContent("licenses|[i]|id")
    outFile.WriteLine(i & ": " & s)
    i = i + 1
Loop

' When we pass just the index "[i]", we're saying: Get the i'th child regardless of tag.
' This is extremely fast because internally we can just access the i'th child directly.

' Another performance improvement is to call NumChildrenAt rather than NumChildrenHavingTag.
' For example:
licCount = xml.NumChildrenAt("licenses")
outFile.WriteLine("licCount = " & licCount)

' NumChildrenAt returns the total number of children at the tag path.  If we already know
' all children will have the same tag, we can just get the count

outFile.Close

 

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