![]() |
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
(PowerBuilder) Sign XML (XAdES) in the Cloud using Azure Key VaultSee more Signing in the Cloud ExamplesDemonstrates how to sign XML using Azure Key Vault. The signing of the hash happens in the Cloud on Azure Key Vault. 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.
integer li_rc oleobject loo_SbXml integer li_BCrlf oleobject loo_Cert integer li_Success oleobject loo_JsonAzure oleobject loo_Gen integer li_BUsePrivateKey // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Create the XML to be signed. loo_SbXml = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbXml.ConnectToNewObject("Chilkat.StringBuilder") if li_rc < 0 then destroy loo_SbXml MessageBox("Error","Connecting to COM object failed") return end if li_BCrlf = 1 loo_SbXml.AppendLine("<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~" ?>",li_BCrlf) loo_SbXml.AppendLine("<SOAP-ENV:Envelope xmlns:SOAP-ENV=~"http://schemas.xmlsoap.org/soap/envelope/~">",li_BCrlf) loo_SbXml.AppendLine(" <SOAP-ENV:Header>",li_BCrlf) loo_SbXml.AppendLine(" <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>",li_BCrlf) loo_SbXml.AppendLine(" </SOAP-ENV:Header>",li_BCrlf) loo_SbXml.AppendLine(" <SOAP-ENV:Body xmlns:SOAP-SEC=~"http://schemas.xmlsoap.org/soap/security/2000-12~" SOAP-SEC:id=~"Body~">",li_BCrlf) loo_SbXml.AppendLine(" <z:FooBar xmlns:z=~"http://example.com~" />",li_BCrlf) loo_SbXml.AppendLine(" </SOAP-ENV:Body>",li_BCrlf) loo_SbXml.AppendLine("</SOAP-ENV:Envelope>",li_BCrlf) // Load the certificate used for signing. The certificate's private key is stored in // the Azure Key Vault. // However, we still need the certificate locally (without private key). loo_Cert = create oleobject // Use "Chilkat_9_5_0.Cert" for versions of Chilkat < 10.0.0 li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert") li_Success = loo_Cert.LoadFromFile("qa_data/certs/myCert.cer") if li_Success = 0 then Write-Debug loo_Cert.LastErrorText destroy loo_SbXml destroy loo_Cert return end if // Here's a screenshot of our certificate with private key on Azure Key Vault: |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.