![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) Sign XML (XAdES) in the Cloud using AWS KMSSee more Signing in the Cloud ExamplesDemonstrates how to sign XML using AWS KMS. The signing of the hash happens in AWK KMS. Everything else involving the updating the XML to add the signature happens locally within Chilkat.Note: This example requires Chilkat v9.5.0.96 or greater.
Use ChilkatAx-win32.pkg Procedure Test Variant vSbXml Handle hoSbXml Boolean iBCrlf Boolean iSuccess Variant vCert Handle hoCert Boolean iSuccess Variant vJsonAwsKms Handle hoJsonAwsKms Handle hoGen Boolean iBUsePrivateKey String sTemp1 // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Create the XML to be signed. Get Create (RefClass(cComChilkatStringBuilder)) To hoSbXml If (Not(IsComObjectCreated(hoSbXml))) Begin Send CreateComObject of hoSbXml End Move True To iBCrlf Get ComAppendLine Of hoSbXml '<?xml version="1.0" encoding="UTF-8" standalone="no" ?>' iBCrlf To iSuccess Get ComAppendLine Of hoSbXml '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">' iBCrlf To iSuccess Get ComAppendLine Of hoSbXml " <SOAP-ENV:Header>" iBCrlf To iSuccess Get ComAppendLine Of hoSbXml ' <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" SOAP-ENV:mustUnderstand="1"></wsse:Security>' iBCrlf To iSuccess Get ComAppendLine Of hoSbXml " </SOAP-ENV:Header>" iBCrlf To iSuccess Get ComAppendLine Of hoSbXml ' <SOAP-ENV:Body xmlns:SOAP-SEC="http://schemas.xmlsoap.org/soap/security/2000-12" SOAP-SEC:id="Body">' iBCrlf To iSuccess Get ComAppendLine Of hoSbXml ' <z:FooBar xmlns:z="http://example.com" />' iBCrlf To iSuccess Get ComAppendLine Of hoSbXml " </SOAP-ENV:Body>" iBCrlf To iSuccess Get ComAppendLine Of hoSbXml "</SOAP-ENV:Envelope>" iBCrlf To iSuccess // Load the certificate used for signing. The certificate's private key is stored in AWS KMS // However, we still need the certificate locally (without private key). Get Create (RefClass(cComChilkatCert)) To hoCert If (Not(IsComObjectCreated(hoCert))) Begin Send CreateComObject of hoCert End Get ComLoadFromFile Of hoCert "qa_data/certs/myCert.cer" To iSuccess If (iSuccess = False) Begin Get ComLastErrorText Of hoCert To sTemp1 Showln sTemp1 Procedure_Return End // Here's a screenshot of our private key AWS KMS: |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.