|  | 
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
| (Delphi DLL) 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. 
 uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, StringBuilder, XmlDSigGen, Cert, JsonObject; ... procedure TForm1.Button1Click(Sender: TObject); var sbXml: HCkStringBuilder; bCrlf: Boolean; cert: HCkCert; success: Boolean; jsonAzure: HCkJsonObject; gen: HCkXmlDSigGen; bUsePrivateKey: Boolean; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Create the XML to be signed. sbXml := CkStringBuilder_Create(); bCrlf := True; CkStringBuilder_AppendLine(sbXml,'<?xml version="1.0" encoding="UTF-8" standalone="no" ?>',bCrlf); CkStringBuilder_AppendLine(sbXml,'<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">',bCrlf); CkStringBuilder_AppendLine(sbXml,' <SOAP-ENV:Header>',bCrlf); CkStringBuilder_AppendLine(sbXml,' <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>',bCrlf); CkStringBuilder_AppendLine(sbXml,' </SOAP-ENV:Header>',bCrlf); CkStringBuilder_AppendLine(sbXml,' <SOAP-ENV:Body xmlns:SOAP-SEC="http://schemas.xmlsoap.org/soap/security/2000-12" SOAP-SEC:id="Body">',bCrlf); CkStringBuilder_AppendLine(sbXml,' <z:FooBar xmlns:z="http://example.com" />',bCrlf); CkStringBuilder_AppendLine(sbXml,' </SOAP-ENV:Body>',bCrlf); CkStringBuilder_AppendLine(sbXml,'</SOAP-ENV:Envelope>',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). cert := CkCert_Create(); success := CkCert_LoadFromFile(cert,'qa_data/certs/myCert.cer'); if (success = False) then begin Memo1.Lines.Add(CkCert__lastErrorText(cert)); Exit; end; // Here's a screenshot of our certificate with private key on Azure Key Vault: | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.