Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift 3,4,5...) Belgium eHealth Platform - AddressBook - Search for ProfessionalsSee more Belgian eHealth Platform ExamplesDemonstrates how to search for professionals using the AddressBook API. For more information, see https://www.ehealth.fgov.be/ehealthplatform/nl/data/file/view/6c419e5685327eed7200d1c543c38a55d5387d30?name=AddressBook%20Consultation%20WS%20v.1%20-%20Cookbook%20v.1.11%20dd%2031082023.pdf
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. var success: Bool = true // Provide a certificate + private key. // Note: If your certificate + private key is located on a hardware token or smartcard, you can call a different function to load from smartcard.. let cert = CkoCert()! success = cert.loadPfxFile("SSIN=12345678.acc.p12", password: "p12_password") if success != true { print("\(cert.lastErrorText!)") return } // Create the XML to be signed... let xmlToSign = CkoXml()! xmlToSign.tag = "soapenv:Envelope" xmlToSign.addAttribute("xmlns:soapenv", value: "http://schemas.xmlsoap.org/soap/envelope/") xmlToSign.addAttribute("xmlns:urn", value: "urn:be:fgov:ehealth:platformintegrationconsumertest:v1") xmlToSign.addAttribute("xmlns:urn1", value: "urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1") xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security", autoCreate: true, attrName: "xmlns:wsse", attrValue: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd") xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security", autoCreate: true, attrName: "xmlns:wsu", attrValue: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd") xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security|wsse:BinarySecurityToken", autoCreate: true, attrName: "EncodingType", attrValue: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary") xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security|wsse:BinarySecurityToken", autoCreate: true, attrName: "ValueType", attrValue: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3") xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security|wsse:BinarySecurityToken", autoCreate: true, attrName: "wsu:Id", attrValue: "X509-FC77E2C72083DA8E0F16711753508182856") // --------------------------------------------------------------------------------------------------------------- // A note about the Id's, such as X509-FC77E2C72083DA8E0F16711753508182856, TS-FC77E2C72083DA8E0F16711753508042855, etc. // These Id's simply need to be unique within the XML document. You don't need to generate new Id's every time. // You can use the same Id's in each XML document that is submitted. The purpose of each Id is to // match the XMLDsig Reference to the element in XML being referenced. // In other words, you could use the Id's "mickey_mouse", "donald_duck", and "goofy", and it would work perfectly OK, // as long as no other XML elements also use the Id's "mickey_mouse", "donald_duck", or "goofy" // --------------------------------------------------------------------------------------------------------------- let bdCert = CkoBinData()! cert.exportDerBd(bdCert) xmlToSign.updateChildContent("soapenv:Header|wsse:Security|wsse:BinarySecurityToken", value: bdCert.getEncoded("base64")) xmlToSign.updateAttr(at: "soapenv:Header|wsse:Security|wsu:Timestamp", autoCreate: true, attrName: "wsu:Id", attrValue: "TS-FC77E2C72083DA8E0F16711753508042855") let dt = CkoDateTime()! dt.setFromCurrentSystemTime() xmlToSign.updateChildContent("soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Created", value: dt.getAsTimestamp(false)) dt.addSeconds(3600) xmlToSign.updateChildContent("soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Expires", value: dt.getAsTimestamp(false)) dt.addSeconds(-3600) // The body part of the SOAP request to search for professionals looks like this: // <soapenv:Body> // <urn:SearchProfessionalsRequest Id="id-FC77E2C72083DA8E0F16711753508182859" IssueInstant="2016-03-23T18:49:26.968+01:00" Offset="0" MaxElements="100"> // <urn:SSIN>74062423769</urn:SSIN> // </urn:SearchProfessionalsRequest> // </soapenv:Body> xmlToSign.updateAttr(at: "soapenv:Body|urn:SearchProfessionalsRequest", autoCreate: true, attrName: "Id", attrValue: "id-FC77E2C72083DA8E0F16711753508182859") xmlToSign.updateAttr(at: "soapenv:Body|urn:SearchProfessionalsRequest", autoCreate: true, attrName: "IssueInstant", attrValue: dt.getAsTimestamp(true)) xmlToSign.updateAttr(at: "soapenv:Body|urn:SearchProfessionalsRequest", autoCreate: true, attrName: "Offset", attrValue: "0") xmlToSign.updateAttr(at: "soapenv:Body|urn:SearchProfessionalsRequest", autoCreate: true, attrName: "MaxElements", attrValue: "100") xmlToSign.updateChildContent("soapenv:Body|urn:SearchProfessionalsRequest|urn:SSIN", value: "12345678910") let gen = CkoXmlDSigGen()! gen.sigLocation = "soapenv:Envelope|soapenv:Header|wsse:Security|wsse:BinarySecurityToken" gen.sigLocationMod = 1 gen.sigId = "SIG-FC77E2C72083DA8E0F16711753508252860" gen.sigNamespacePrefix = "ds" gen.sigNamespaceUri = "http://www.w3.org/2000/09/xmldsig#" gen.signedInfoPrefixList = "soapenv urn urn1" 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 = "KI-FC77E2C72083DA8E0F16711753508182857" // -------- Reference 1 -------- gen.addSameDocRef("TS-FC77E2C72083DA8E0F16711753508042855", digestMethod: "sha256", canonMethod: "EXCL_C14N", prefixList: "wsse soapenv urn urn1", refType: "") // -------- Reference 2 -------- gen.addSameDocRef("id-FC77E2C72083DA8E0F16711753508182859", digestMethod: "sha256", canonMethod: "EXCL_C14N", prefixList: "urn urn1", refType: "") // -------- Reference 3 -------- gen.addSameDocRef("X509-FC77E2C72083DA8E0F16711753508182856", digestMethod: "sha256", canonMethod: "EXCL_C14N", prefixList: "_EMPTY_", refType: "") gen.setX509Cert(cert, usePrivateKey: true) gen.keyInfoType = "Custom" // Create the custom KeyInfo XML.. let xmlCustomKeyInfo = CkoXml()! xmlCustomKeyInfo.tag = "wsse:SecurityTokenReference" xmlCustomKeyInfo.addAttribute("wsu:Id", value: "STR-FC77E2C72083DA8E0F16711753508182858") xmlCustomKeyInfo.updateAttr(at: "wsse:Reference", autoCreate: true, attrName: "URI", attrValue: "#X509-FC77E2C72083DA8E0F16711753508182856") xmlCustomKeyInfo.updateAttr(at: "wsse:Reference", autoCreate: true, attrName: "ValueType", attrValue: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3") xmlCustomKeyInfo.emitXmlDecl = false gen.customKeyInfoXml = xmlCustomKeyInfo.getXml() // Load XML to be signed... let sbXml = CkoStringBuilder()! xmlToSign.getSb(sbXml) gen.behaviors = "IndentedSignature" // Sign the XML... success = gen.createXmlDSigSb(sbXml) if success != true { print("\(gen.lastErrorText!)") return } // ----------------------------------------------- // Send the signed XML... let http = CkoHttp()! success = http.setSslClientCert(cert) if success != true { print("\(http.lastErrorText!)") return } http.setRequestHeader("Content-Type", value: "text/xml") http.setRequestHeader("SOAPAction", value: "urn:be:fgov:ehealth:addressbook:protocol:v1:searchProfessionals") var resp: CkoHttpResponse? = http.postXml("https://services.ehealth.fgov.be/AddressBook/v1", xmlDoc: sbXml.getAsString(), charset: "utf-8") if http.lastMethodSuccess == false { print("\(http.lastErrorText!)") return } print("\(resp!.bodyStr!)") print("response status code = \(resp!.statusCode.intValue)") resp = nil } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.