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

Delphi DLL 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

 

 

 

(Delphi DLL) XML Exclusive Canonicalization

Demonstrates how to convert XML to the Exclusive XML Canonicalization form as specified in http://www.w3.org/TR/xml-exc-c14n/

Chilkat for Delphi Downloads

Chilkat non-ActiveX DLL for Delphi

Chilkat ActiveX DLL for Delphi

* The examples here use the non-ActiveX DLL.

uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, StringBuilder, XmlDSig;

...

procedure TForm1.Button1Click(Sender: TObject);
var
http: HCkHttp;
sbXml: HCkStringBuilder;
canon: HCkXmlDSig;
canonVersion: PWideChar;
withComments: Boolean;
div1: PWideChar;
div2: PWideChar;
success: Boolean;
sbUrl: HCkStringBuilder;
i: Integer;
numReplaced: Integer;
xmlCanon: PWideChar;

begin
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// The XML digital signature verification class provides utility methods for
// XML canonicalization.  This example demonstrates how to do exclusive XML canonicalization.

// This example will show many sample XML inputs and outputs.  The input XML files are available online
// as shown in this example.

http := CkHttp_Create();
sbXml := CkStringBuilder_Create();
canon := CkXmlDSig_Create();

// Use exclusive XML canonicalization.
canonVersion := 'EXCL_C14N';
withComments := False;

div1 := '--------------- input ---------------';
div2 := '--------------- canonicalized output ---------------';

sbUrl := CkStringBuilder_Create();

i := 1;
while i < 20 do
  begin
    CkStringBuilder_SetString(sbUrl,'https://www.chilkatsoft.com/exampleData/c14n/testTESTNUMBER.xml');
    numReplaced := CkStringBuilder_ReplaceI(sbUrl,'TESTNUMBER',i);

    success := CkHttp_QuickGetSb(http,CkStringBuilder__getAsString(sbUrl),sbXml);
    if (success = True) then
      begin
        xmlCanon := CkXmlDSig__canonicalizeXml(canon,CkStringBuilder__getAsString(sbXml),canonVersion,withComments);

        Memo1.Lines.Add('---- Test ' + IntToStr(i) + ' ----');
        Memo1.Lines.Add(div1);
        Memo1.Lines.Add(CkStringBuilder__getAsString(sbXml));
        Memo1.Lines.Add(div2);
        Memo1.Lines.Add(xmlCanon);
        Memo1.Lines.Add(' ');
      end;

    i := i + 1;
  end;

// The output of this program is:

// 
// ---- Test 1 ----
// --------------- input ---------------
// <?xml version="1.0"?>
// 
// <?xml-stylesheet   href="doc.xsl"
//    type="text/xsl"   ?>  
// 
// <!DOCTYPE doc SYSTEM "doc.dtd">
// 
// <doc>Hello, world!<!-- Comment 1 --></doc>
// 
// <?pi-without-data     ?>
// 
// <!-- Comment 2 -->
// 
// <!-- Comment 3 -->
// --------------- canonicalized output ---------------
// <?xml-stylesheet href="doc.xsl"
//    type="text/xsl"   ?>
// <doc>Hello, world!</doc>
// <?pi-without-data?>
//  
// ---- Test 2 ----
// --------------- input ---------------
// <?xml version="1.0"?>
// 
// <?xml-stylesheet   href="doc.xsl"
//    type="text/xsl"   ?>  
// 
// <doc>Hello, world!<fish name="goldie"   type = "goldfish"   color='gold'    /></doc>
// 
// <?pi-without-data     ?>
// 
// 
// --------------- canonicalized output ---------------
// <?xml-stylesheet href="doc.xsl"
//    type="text/xsl"   ?>
// <doc>Hello, world!<fish color="gold" name="goldie" type="goldfish"></fish></doc>
// <?pi-without-data?>
//  
// ---- Test 3 ----
// --------------- input ---------------
// <doc>
//    <clean>   </clean>
//    <dirty>   A   B   </dirty>
//    <mixed>
//       A
//       <clean>   </clean>
//       B
//       <dirty>   A   B   </dirty>
//       C
//    </mixed>
// </doc> 
// --------------- canonicalized output ---------------
// <doc>
//    <clean>   </clean>
//    <dirty>   A   B   </dirty>
//    <mixed>
//       A
//       <clean>   </clean>
//       B
//       <dirty>   A   B   </dirty>
//       C
//    </mixed>
// </doc>
//  
// ---- Test 4 ----
// --------------- input ---------------
// <!DOCTYPE doc [
// <!ATTLIST normId id ID #IMPLIED>
// <!ATTLIST normNames attr NMTOKENS #IMPLIED>
// ]>
// <doc>
//    <text>First line&#x0d;&#10;Second line</text>
//    <value>&#x32;</value>
//    <compute><![CDATA[value>"0" && value<"10" ?"valid":"error"]]></compute>
//    <compute expr='value>"0" &amp;&amp; value&lt;"10" ?"valid":"error"'>valid</compute>
//    <norm attr=' &apos;   &#x20;&#13;&#xa;&#9;   &apos; '/>
//    <normNames attr='   A   &#x20;&#13;&#xa;&#9;   B   '/>
//    <normId id=' &apos;   &#x20;&#13;&#xa;&#9;   &apos; '/>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
//    <text>First line&#xD;
// Second line</text>
//    <value>2</value>
//    <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
//    <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
//    <norm attr=" '    &#xD;&#xA;&#x9;   ' "></norm>
//    <normNames attr="A &#xD;&#xA;&#x9; B"></normNames>
//    <normId id="' &#xD;&#xA;&#x9; '"></normId>
// </doc>
//  
// ---- Test 5 ----
// --------------- input ---------------
// <doc>
//   <lizard type="gecko &amp; african" abc="&amp; test &quot;" />
//   <snake type="poisonous rattler" />
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
//   <lizard abc="&amp; test &quot;" type="gecko &amp; african"></lizard>
//   <snake type="poisonous rattler"></snake>
// </doc>
//  
// ---- Test 6 ----
// --------------- input ---------------
// <doc>
// <!-- A namespace node N is ignored if the nearest ancestor element of the node's parent element that is in the node-set has a namespace node in the node-set with the same local name and value as N. -->
// 	<animal xmlns="" xmlns:aa="https://www.animal.com/">
// 		<reptile xmlns:cc="https://www.herpetology.com/" xmlns:bb="https://www.reptile.com/">
//   			<lizard type="african fat tailed" abc="xyz" xmlns:aa="https://www.animal.com/" />
//   			<snake type="poisonous rattler" xmlns:bb="https://www.reptile.com/" >
//   				<cobra bb:name="benny" />
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// 
// 	<animal>
// 		<reptile>
//   			<lizard abc="xyz" type="african fat tailed"></lizard>
//   			<snake type="poisonous rattler">
//   				<cobra xmlns:bb="https://www.reptile.com/" bb:name="benny"></cobra>
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
//  
// ---- Test 7 ----
// --------------- input ---------------
// <doc>
// <!-- A namespace node N is ignored if the nearest ancestor element of the node's parent element that is in the node-set has a namespace node in the node-set with the same local name and value as N. -->
// 	<animal xmlns:aa="https://www.animal.com/">
// 		<reptile xmlns:bb="https://www.reptile.com/">
//   			<lizard xmlns="" type="african fat tailed" abc="xyz" xmlns:aa="https://www.animal.com/" />
//   			<snake type="poisonous rattler" xmlns:bb="https://www.reptile.com/" >
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// 
// 	<animal>
// 		<reptile>
//   			<lizard abc="xyz" type="african fat tailed"></lizard>
//   			<snake type="poisonous rattler">
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
//  
// ---- Test 8 ----
// --------------- input ---------------
// <doc>
// <!-- generate a space followed by xmlns="" if and only if the following conditions are met:
// 
//     the element E that owns the axis is in the node-set
//     The nearest ancestor element of E in the node-set has a default namespace node in the node-set (default namespace nodes always have non-empty values in XPath)
//  -->
// 	<animal xmlns="https://www.animal.com/">
// 		<reptile xmlns:bb="https://www.reptile.com/">
//   			<lizard xmlns="" type="african fat tailed" abc="xyz" xmlns:bb="https://www.reptile222.com/" >
//   				<myPet xmlns:bb="https://www.reptile.com/">larry</myPet>
//   			</lizard>
//   			<snake type="poisonous rattler" xmlns:bb="https://www.reptile.com/" >
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// 
// 	<animal xmlns="https://www.animal.com/">
// 		<reptile>
//   			<lizard xmlns="" abc="xyz" type="african fat tailed">
//   				<myPet>larry</myPet>
//   			</lizard>
//   			<snake type="poisonous rattler">
//   			</snake>
//   		</reptile>
//   	</animal>
// </doc>
//  
// ---- Test 9 ----
// --------------- input ---------------
// <!DOCTYPE doc [<!ATTLIST e9 attr CDATA "default">]>
// <doc>
//    <e1   />
//    <e2   ></e2>
//    <e3   name = "elem3"   id="elem3"   />
//    <e4   name="elem4"   id="elem4"   ></e4>
//    <e5 a:attr="out" b:attr="sorted" attr2="all" attr="I'm"
//       xmlns:b="http://www.ietf.org"
//       xmlns:a="http://www.w3.org"
//       xmlns="http://example.org"/>
//    <e6 xmlns="" xmlns:a="http://www.w3.org">
//       <e7 xmlns="http://www.ietf.org">
//          <e8 xmlns="" xmlns:a="http://www.w3.org">
//             <e9 xmlns="" xmlns:a="http://www.ietf.org"/>
//          </e8>
//       </e7>
//    </e6>
// </doc>       
// --------------- canonicalized output ---------------
// <doc>
//    <e1></e1>
//    <e2></e2>
//    <e3 id="elem3" name="elem3"></e3>
//    <e4 id="elem4" name="elem4"></e4>
//    <e5 xmlns="http://example.org" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
//    <e6>
//       <e7 xmlns="http://www.ietf.org">
//          <e8 xmlns="">
//             <e9 attr="default"></e9>
//          </e8>
//       </e7>
//    </e6>
// </doc>
//  
// ---- Test 10 ----
// --------------- input ---------------
// <?xml version="1.0" encoding="UTF-8"?>
// 
// <!DOCTYPE note [
// <!ENTITY nbsp "&#xA0;">
// <!ENTITY author "Donald Duck">
// <!ENTITY writer "Writer: &author;.">
// <!ENTITY copyright "Copyright: &lt; > Chilkat.">
// <!ATTLIST OPTIONS
// 	FINISH (Metal|Polished|Matte) "Matte"
// 	ADAPTER (Included|Optional|NotApplicable) "Included"
// 	CASE (HardShell|Soft|NotApplicable) "HardShell">
// 
// <!ATTLIST footer
//    src    CDATA          #REQUIRED
//    id     ID             #IMPLIED
//    sort   CDATA          #FIXED "true"
//    print  (yes | no) "yes"
// >
// <!ENTITY myEntityA "Some Entity Value A">
// <!ENTITY myEntityB "Some Entity Value B">
// ]>
// 
// <note>
// <OPTIONS/>
// <to>Tove &#xA0; &#xE1; &amp; &lt; &gt; &apos; &quot; " ' ></to>
// <from eTest="&amp; &#xA0; &#xE1; &lt; > &gt; &apos; ' &quot; ">Jani</from>
// <heading myEntityTest="&myEntityA;">Reminder</heading>
// <body>Don't forget me this weekend!</body>
// <footer>&writer;&nbsp;&copyright;</footer>
// <footer print="no">&writer;&nbsp;&copyright;</footer>
//    <someCData><![CDATA[
//       &amp; &lt; &gt; &apos; &quot; 
//       " ' & < >
//       This is a test.
// ]]></someCData>
//    <someText>
//       &amp; &lt; &gt; &apos; &quot; 
//       " '   >
//       This is a test.     
//    </someText>
// </note>
// --------------- canonicalized output ---------------
// <note>
// <OPTIONS ADAPTER="Included" CASE="HardShell" FINISH="Matte"></OPTIONS>
// <to>Tove   &amp; &lt; &gt; ' " " ' &gt;</to>
// <from eTest="&amp;   &lt; > > ' ' &quot; ">Jani</from>
// <heading myEntityTest="Some Entity Value A">Reminder</heading>
// <body>Don't forget me this weekend!</body>
// <footer print="yes" sort="true">Writer: Donald Duck.Copyright: &lt; &gt; Chilkat.</footer>
// <footer print="no" sort="true">Writer: Donald Duck.Copyright: &lt; &gt; Chilkat.</footer>
//    <someCData>
//       &amp;amp; &amp;lt; &amp;gt; &amp;apos; &amp;quot; 
//       " ' &amp; &lt; &gt;
//       This is a test.
// </someCData>
//    <someText>
//       &amp; &lt; &gt; ' " 
//       " '   &gt;
//       This is a test.     
//    </someText>
// </note>
//  
// ---- Test 11 ----
// --------------- input ---------------
// <?xml version="1.0" encoding="UTF-8"?>
// 
// <!DOCTYPE note [
// <!ENTITY nbsp "&#xA0;">
// <!ENTITY writer "Writer: Donald Duck.">
// <!ENTITY copyright "Copyright: &lt; > Chilkat.">
// <!ATTLIST OPTIONS
// 	FINISH (Metal|Polished|Matte) "Matte"
// 	ADAPTER (Included|Optional|NotApplicable) "Included"
// 	CASE (HardShell|Soft|NotApplicable) "HardShell">
// 
// <!ATTLIST footer
//    src    CDATA          #REQUIRED
//    id     ID             #IMPLIED
//    sort   CDATA          #FIXED "true"
//    print  (yes | no) "yes"
// >
// <!ENTITY myEntityA "Some Entity Value A">
// <!ENTITY myEntityB "Some Entity Value B">
// 
// <!ENTITY c SYSTEM "http://www.xmlwriter.net/copyright.xml">
// <!ENTITY c PUBLIC "-//W3C//TEXT copyright//EN"
//  "http://www.w3.org/xmlspec/copyright.xml">
//  
// <!ENTITY logo SYSTEM "http://www.xmlwriter.net/logo.gif" NDATA gif>
// <!ENTITY logo PUBLIC  "-//W3C//GIF logo//EN" "http://www.w3.org/logo.gif" NDATA gif>
// 
// ]>
// 
// <note>
// <OPTIONS/>
// <to>Tove</to>
// <from>Jani</from>
// <heading myEntityTest="&myEntityA;">Reminder</heading>
// <body>Don't forget me this weekend!</body>
// <footer>&writer;&nbsp;&copyright;</footer>
// </note>
// --------------- canonicalized output ---------------
// <note>
// <OPTIONS ADAPTER="Included" CASE="HardShell" FINISH="Matte"></OPTIONS>
// <to>Tove</to>
// <from>Jani</from>
// <heading myEntityTest="Some Entity Value A">Reminder</heading>
// <body>Don't forget me this weekend!</body>
// <footer print="yes" sort="true">Writer: Donald Duck.Copyright: &lt; &gt; Chilkat.</footer>
// </note>
//  
// ---- Test 12 ----
// --------------- input ---------------
// <?xml version="1.0" encoding="UTF-8"?>
// <lizard  xml:space="retain" xml:lang="en">
// 	<gecko />
// 	<bearded_dragon xml:lang="en" xml:space="retain">pip</bearded_dragon>
// </lizard>
// 
// --------------- canonicalized output ---------------
// <lizard xml:lang="en" xml:space="retain">
// 	<gecko></gecko>
// 	<bearded_dragon xml:lang="en" xml:space="retain">pip</bearded_dragon>
// </lizard>
//  
// ---- Test 13 ----
// --------------- input ---------------
// <?xml version="1.0" encoding="UTF-8"?>
// <lizard  xmlns="http://www.chilkatsoft.com">
// 	<gecko name="larry" />
// 	<bearded_dragon  xmlns="http://www.beardies.com" name="pip">pip</bearded_dragon>
// </lizard>
// 
// --------------- canonicalized output ---------------
// <lizard xmlns="http://www.chilkatsoft.com">
// 	<gecko name="larry"></gecko>
// 	<bearded_dragon xmlns="http://www.beardies.com" name="pip">pip</bearded_dragon>
// </lizard>
//  
// ---- Test 14 ----
// --------------- input ---------------
// <doc>
// <a xmlns:aa="https://www.test1.org">
// <b xmlns:aa="https://www.test2.org">
// <c xmlns:aa="https://www.test1.org">
// <d xmlns:aa="https://www.test2.org">
// <e xmlns:aa="https://www.test1.org">
// </e>
// </d>
// </c>
// </b>
// </a>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// <a>
// <b>
// <c>
// <d>
// <e>
// </e>
// </d>
// </c>
// </b>
// </a>
// </doc>
//  
// ---- Test 15 ----
// --------------- input ---------------
// <doc>
// <a xmlns:aa="https://www.test1.org">
// <b xmlns:aa="https://www.test1.org">
// <c xmlns:aa="https://www.test1.org">
// <d xmlns:aa="https://www.test1.org">
// <e xmlns:aa="https://www.test1.org">
// </e>
// </d>
// </c>
// </b>
// </a>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// <a>
// <b>
// <c>
// <d>
// <e>
// </e>
// </d>
// </c>
// </b>
// </a>
// </doc>
//  
// ---- Test 16 ----
// --------------- input ---------------
// <doc>
// <a xmlns="">
// <b xmlns="">
// <c xmlns="https://www.chilkatsoft.com">
// <c2 xmlns="https://www.chilkatsoft.com">
// <d xmlns="">
// <e xmlns="">
// </e>
// </d>
// </c2>
// </c>
// </b>
// </a>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// <a>
// <b>
// <c xmlns="https://www.chilkatsoft.com">
// <c2>
// <d xmlns="">
// <e>
// </e>
// </d>
// </c2>
// </c>
// </b>
// </a>
// </doc>
//  
// ---- Test 17 ----
// --------------- input ---------------
// <doc>
// <a xmlns:aa="https://www.testA.com/" xmlns:zz="https://testZ.com" zz:color="blue" xmlns:yy="https://testY.com">
// <b xmlns="">
// <c xmlns:aa="https://www.testA.com/" aa:location="Chicago" xmlns:bb="https://www.testB.com/">
// <bb:d xmlns:aa="https://www.testAA.com/" aa:country="USA" yy:planet="Earth">
// </bb:d>
// </c>
// </b>
// </a>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// <a xmlns:zz="https://testZ.com" zz:color="blue">
// <b>
// <c xmlns:aa="https://www.testA.com/" aa:location="Chicago">
// <bb:d xmlns:aa="https://www.testAA.com/" xmlns:bb="https://www.testB.com/" xmlns:yy="https://testY.com" yy:planet="Earth" aa:country="USA">
// </bb:d>
// </c>
// </b>
// </a>
// </doc>
//  
// ---- Test 18 ----
// --------------- input ---------------
// <doc>
// <a xmlns:aa="https://www.testA.com/" aa:location="Chicago">
// <b xmlns:aa="https://www.testA.com/"><!-- aa is not emitted here (using exclusive canon) -->
// <c xmlns:aa="https://www.testA.com/">test</c><!-- aa is not emitted here (using exclusive canon) -->
// </b>
// </a>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// <a xmlns:aa="https://www.testA.com/" aa:location="Chicago">
// <b>
// <c>test</c>
// </b>
// </a>
// </doc>
//  
// ---- Test 19 ----
// --------------- input ---------------
// <doc>
// <!-- generate a space followed by xmlns="" if and only if the following conditions are met:
// 
//     the element E that owns the axis is in the node-set
//     The nearest ancestor element of E in the node-set has a default namespace node in the node-set (default namespace nodes always have non-empty values in XPath)
//  -->
// 	<animal xmlns:bb="https://www.reptile.com/">
// 		<bb:reptile xmlns="https://www.animal.com/" bb:abc="123">
//   			<lizard xmlns="" type="african fat tailed" abc="xyz" xmlns:bb="https://www.reptile222.com/" >
//   				<myPet xmlns:bb="https://www.reptile.com/">larry</myPet>
//   			</lizard>
//   			<snake type="poisonous rattler" xmlns:bb="https://www.reptile.com/" >
//   			</snake>
//   		</bb:reptile>
//   	</animal>
// </doc>
// 
// --------------- canonicalized output ---------------
// <doc>
// 
// 	<animal>
// 		<bb:reptile xmlns:bb="https://www.reptile.com/" bb:abc="123">
//   			<lizard abc="xyz" type="african fat tailed">
//   				<myPet>larry</myPet>
//   			</lizard>
//   			<snake xmlns="https://www.animal.com/" type="poisonous rattler">
//   			</snake>
//   		</bb:reptile>
//   	</animal>
// </doc>
//  
// 

CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbXml);
CkXmlDSig_Dispose(canon);
CkStringBuilder_Dispose(sbUrl);

end;

 

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