Sample code for 30+ languages & platforms
Dart

Sign SOAP XML for New Zealand Customs Service

See more XAdES Examples

Demonstrates how to create an XAdES signed SOAP XML pertaining to the New Zealand Customs Service.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  // Create the following XML to be signed:

  // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
  //     xmlns:v1="http://customs.govt.nz/jbms/msggate/reqresp/v1">
  //     <soapenv:Header>
  //         <wsse:Security soapenv:mustUnderstand="1"
  //             xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
  //             xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
  //             <wsu:Timestamp wsu:Id="TS-037E78514E9B9132CB16817563559151">
  //                 <wsu:Created>2023-04-17T18:32:35.913Z</wsu:Created>
  //                 <wsu:Expires>2023-04-17T19:32:35.913Z</wsu:Expires>
  //             </wsu:Timestamp>
  //         </wsse:Security>
  //     </soapenv:Header>
  //     <soapenv:Body wsu:Id="id-8"
  //         xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
  //         <v1:RequestResponse>
  //             <v1:Submitter>TEST1234</v1:Submitter>
  //             <v1:MailboxMsgId>999999</v1:MailboxMsgId>
  //         </v1:RequestResponse>
  //     </soapenv:Body>
  // </soapenv:Envelope>

  // Create a random ID like this: TS-037E78514E9B9132CB16817563559151
  final tsId = CkStringBuilder();
  tsId.append('TS-');
  tsId.appendRandom(16, 'hex');

  // STR-037E78514E9B9132CB16817563559614
  final strId = CkStringBuilder();
  strId.append('STR-');
  strId.appendRandom(16, 'hex');

  // KI-037E78514E9B9132CB16817563559583
  final keyInfoId = CkStringBuilder();
  keyInfoId.append('KI-');
  keyInfoId.appendRandom(16, 'hex');

  // Create a date/time for the current time with this format:  2023-04-17T18:32:35.913Z
  final dt = CkDateTime();
  dt.setFromCurrentSystemTime();

  final sbNow = CkStringBuilder();
  sbNow.append(dt.getAsTimestamp(false));
  // If we really need the milliseconds, we can replace the "Z" with ".000Z"
  // The server will also likely accept a timestamp without milliseconds, such as 2023-04-17T18:32:35Z
  var n = sbNow.replace('Z', '.000Z');

  final sbNowPlusOneHour = CkStringBuilder();
  dt.addSeconds(3600);
  sbNowPlusOneHour.append(dt.getAsTimestamp(false));
  n = sbNowPlusOneHour.replace('Z', '.000Z');

  final xmlToSign = CkXml();
  xmlToSign.tag = 'soapenv:Envelope';
  xmlToSign.addAttribute('xmlns:soapenv', 'http://schemas.xmlsoap.org/soap/envelope/');
  xmlToSign.addAttribute('xmlns:v1', 'http://customs.govt.nz/jbms/msggate/reqresp/v1');
  xmlToSign.updateAttrAt('soapenv:Header|wsse:Security', true, 'soapenv:mustUnderstand', '1');
  xmlToSign.updateAttrAt('soapenv:Header|wsse:Security', true, 'xmlns:wsse', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd');
  xmlToSign.updateAttrAt('soapenv:Header|wsse:Security', true, 'xmlns:wsu', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd');
  xmlToSign.updateAttrAt('soapenv:Header|wsse:Security|wsu:Timestamp', true, 'wsu:Id', tsId.getAsString());
  xmlToSign.updateChildContent('soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Created', sbNow.getAsString());
  xmlToSign.updateChildContent('soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Expires', sbNowPlusOneHour.getAsString());
  xmlToSign.updateAttrAt('soapenv:Body', true, 'wsu:Id', 'id-8');
  xmlToSign.updateAttrAt('soapenv:Body', true, 'xmlns:wsu', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd');
  xmlToSign.updateChildContent('soapenv:Body|v1:RequestResponse|v1:Submitter', 'TEST1234');
  xmlToSign.updateChildContent('soapenv:Body|v1:RequestResponse|v1:MailboxMsgId', '999999');

  final gen = CkXmlDSigGen();

  gen.sigLocation = 'soapenv:Envelope|soapenv:Header|wsse:Security';
  gen.sigLocationMod = 0;
  gen.sigId = 'SIG-037E78514E9B9132CB16817563559695';
  gen.sigNamespacePrefix = 'ds';
  gen.sigNamespaceUri = 'http://www.w3.org/2000/09/xmldsig#';
  gen.signedInfoPrefixList = 'soapenv v1';
  gen.incNamespacePrefix = 'ec';
  gen.incNamespaceUri = 'http://www.w3.org/2001/10/xml-exc-c14n#';
  gen.signedInfoCanonAlg = 'EXCL_C14N';
  gen.signedInfoDigestMethod = 'sha256';

  // Set the KeyInfoId before adding references..
  gen.keyInfoId = keyInfoId.getAsString();

  // -------- Reference 1 --------
  final xml1 = CkXml();
  xml1.tag = 'ds:Transforms';
  xml1.updateAttrAt('ds:Transform', true, 'Algorithm', 'http://www.w3.org/2001/10/xml-exc-c14n#');
  xml1.updateAttrAt('ds:Transform|ec:InclusiveNamespaces', true, 'PrefixList', 'wsse soapenv v1');
  xml1.updateAttrAt('ds:Transform|ec:InclusiveNamespaces', true, 'xmlns:ec', 'http://www.w3.org/2001/10/xml-exc-c14n#');

  gen.addSameDocRef2(tsId.getAsString(), 'sha256', xml1, '');

  // -------- Reference 2 --------
  final xml2 = CkXml();
  xml2.tag = 'ds:Transforms';
  xml2.updateAttrAt('ds:Transform', true, 'Algorithm', 'http://www.w3.org/2001/10/xml-exc-c14n#');
  xml2.updateAttrAt('ds:Transform|ec:InclusiveNamespaces', true, 'PrefixList', 'v1');
  xml2.updateAttrAt('ds:Transform|ec:InclusiveNamespaces', true, 'xmlns:ec', 'http://www.w3.org/2001/10/xml-exc-c14n#');

  gen.addSameDocRef2('id-8', 'sha256', xml2, '');

  // Provide a certificate + private key. (PFX password is test123)
  final cert = CkCert();
  try {
    cert.loadPfxFile('qa_data/pfx/cert_test123.pfx', 'test123');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  gen.setX509Cert(cert, true);

  gen.keyInfoType = 'Custom';

  // Create the custom KeyInfo XML..
  final xmlCustomKeyInfo = CkXml();
  xmlCustomKeyInfo.tag = 'wsse:SecurityTokenReference';
  xmlCustomKeyInfo.addAttribute('wsu:Id', strId.getAsString());
  xmlCustomKeyInfo.updateAttrAt('wsse:KeyIdentifier', true, 'EncodingType', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary');
  xmlCustomKeyInfo.updateAttrAt('wsse:KeyIdentifier', true, 'ValueType', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3');
  // Insert the single-line base64 of the signing certificate's DER
  cert.uncommonOptions = 'Base64CertNoCRLF';
  xmlCustomKeyInfo.updateChildContent('wsse:KeyIdentifier', cert.getEncoded());

  xmlCustomKeyInfo.emitXmlDecl = false;
  gen.customKeyInfoXml = xmlCustomKeyInfo.getXml();

  // Load XML to be signed...
  final sbXml = CkStringBuilder();
  xmlToSign.getXmlSb(sbXml);

  gen.behaviors = 'IndentedSignature';

  // Sign the XML...
  gen.verboseLogging = true;
  try {
    gen.createXmlDSigSb(sbXml);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Save the signed XML to a file.
  sbXml.writeFile('c:/temp/qa_output/signedXml.xml', 'utf-8', false);

  print(sbXml.getAsString());
}