![]() |
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
(Unicode C++) Belgium eHealth Platform - checkAccessControlSee more Belgian eHealth Platform ExamplesDemonstrates the checkAccessControl operation of PlatformIntegrationConsumerTest, which requires an X.509 certificate and signature. This tests the validity of your certificate and signature.Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://www.ehealth.fgov.be/ehealthplatform/nl/beveiliging-van-webservices#1
#include <CkCertW.h> #include <CkXmlW.h> #include <CkBinDataW.h> #include <CkDateTimeW.h> #include <CkXmlDSigGenW.h> #include <CkStringBuilderW.h> #include <CkHttpW.h> #include <CkHttpResponseW.h> void ChilkatSample(void) { bool success = false; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // 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.. CkCertW cert; success = cert.LoadPfxFile(L"SSIN=12345678.acc.p12",L"p12_password"); if (success == false) { wprintf(L"%s\n",cert.lastErrorText()); return; } // Create the XML to be signed... CkXmlW xmlToSign; xmlToSign.put_Tag(L"soapenv:Envelope"); xmlToSign.AddAttribute(L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/"); xmlToSign.AddAttribute(L"xmlns:urn",L"urn:be:fgov:ehealth:platformintegrationconsumertest:v1"); xmlToSign.AddAttribute(L"xmlns:urn1",L"urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1"); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security",true,L"xmlns:wsse",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security",true,L"xmlns:wsu",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security|wsse:BinarySecurityToken",true,L"EncodingType",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security|wsse:BinarySecurityToken",true,L"ValueType",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security|wsse:BinarySecurityToken",true,L"wsu:Id",L"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" // --------------------------------------------------------------------------------------------------------------- CkBinDataW bdCert; cert.ExportCertDerBd(bdCert); xmlToSign.UpdateChildContent(L"soapenv:Header|wsse:Security|wsse:BinarySecurityToken",bdCert.getEncoded(L"base64")); xmlToSign.UpdateAttrAt(L"soapenv:Header|wsse:Security|wsu:Timestamp",true,L"wsu:Id",L"TS-FC77E2C72083DA8E0F16711753508042855"); CkDateTimeW dt; dt.SetFromCurrentSystemTime(); xmlToSign.UpdateChildContent(L"soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Created",dt.getAsTimestamp(false)); dt.AddSeconds(3600); xmlToSign.UpdateChildContent(L"soapenv:Header|wsse:Security|wsu:Timestamp|wsu:Expires",dt.getAsTimestamp(false)); dt.AddSeconds(-3600); xmlToSign.UpdateAttrAt(L"soapenv:Body",true,L"wsu:Id",L"id-FC77E2C72083DA8E0F16711753508182859"); xmlToSign.UpdateAttrAt(L"soapenv:Body",true,L"xmlns:wsu",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"); xmlToSign.UpdateChildContent(L"soapenv:Body|urn:CheckAccessControlRequest|urn1:Message",L"Hello World"); // Create a timestamp with the current date/time in the following format: 2014-12-30T15:29:03.157+01:00 xmlToSign.UpdateChildContent(L"soapenv:Body|urn:CheckAccessControlRequest|urn1:Timestamp",dt.getAsTimestamp(true)); CkXmlDSigGenW gen; gen.put_SigLocation(L"soapenv:Envelope|soapenv:Header|wsse:Security|wsse:BinarySecurityToken"); gen.put_SigLocationMod(1); gen.put_SigId(L"SIG-FC77E2C72083DA8E0F16711753508252860"); gen.put_SigNamespacePrefix(L"ds"); gen.put_SigNamespaceUri(L"http://www.w3.org/2000/09/xmldsig#"); gen.put_SignedInfoPrefixList(L"soapenv urn urn1"); gen.put_IncNamespacePrefix(L"ec"); gen.put_IncNamespaceUri(L"http://www.w3.org/2001/10/xml-exc-c14n#"); gen.put_SignedInfoCanonAlg(L"EXCL_C14N"); gen.put_SignedInfoDigestMethod(L"sha256"); // Set the KeyInfoId before adding references.. gen.put_KeyInfoId(L"KI-FC77E2C72083DA8E0F16711753508182857"); // -------- Reference 1 -------- gen.AddSameDocRef(L"TS-FC77E2C72083DA8E0F16711753508042855",L"sha256",L"EXCL_C14N",L"wsse soapenv urn urn1",L""); // -------- Reference 2 -------- gen.AddSameDocRef(L"id-FC77E2C72083DA8E0F16711753508182859",L"sha256",L"EXCL_C14N",L"urn urn1",L""); // -------- Reference 3 -------- gen.AddSameDocRef(L"X509-FC77E2C72083DA8E0F16711753508182856",L"sha256",L"EXCL_C14N",L"_EMPTY_",L""); gen.SetX509Cert(cert,true); gen.put_KeyInfoType(L"Custom"); // Create the custom KeyInfo XML.. CkXmlW xmlCustomKeyInfo; xmlCustomKeyInfo.put_Tag(L"wsse:SecurityTokenReference"); xmlCustomKeyInfo.AddAttribute(L"wsu:Id",L"STR-FC77E2C72083DA8E0F16711753508182858"); xmlCustomKeyInfo.UpdateAttrAt(L"wsse:Reference",true,L"URI",L"#X509-FC77E2C72083DA8E0F16711753508182856"); xmlCustomKeyInfo.UpdateAttrAt(L"wsse:Reference",true,L"ValueType",L"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"); xmlCustomKeyInfo.put_EmitXmlDecl(false); gen.put_CustomKeyInfoXml(xmlCustomKeyInfo.getXml()); // Load XML to be signed... CkStringBuilderW sbXml; xmlToSign.GetXmlSb(sbXml); gen.put_Behaviors(L"IndentedSignature"); // Sign the XML... success = gen.CreateXmlDSigSb(sbXml); if (success == false) { wprintf(L"%s\n",gen.lastErrorText()); return; } // ----------------------------------------------- // Send the signed XML... CkHttpW http; success = http.SetSslClientCert(cert); if (success == false) { wprintf(L"%s\n",http.lastErrorText()); return; } http.SetRequestHeader(L"Content-Type",L"text/xml"); // Change to services.ehealth.fgov.be for the production environment. CkHttpResponseW resp; success = http.HttpSb(L"POST",L"https://services-acpt.ehealth.fgov.be/PlatformIntegrationConsumerTest/v1",sbXml,L"utf-8",L"application/xml",resp); if (success == false) { wprintf(L"%s\n",http.lastErrorText()); return; } wprintf(L"%s\n",resp.bodyStr()); wprintf(L"response status code = %d\n",resp.get_StatusCode()); // A successful response is a 200 status code, with this sample response: // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> // <soapenv:Header xmlns:v1="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:v11="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1"/> // <soapenv:Body xmlns:ic="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:type="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1"> // <ic:CheckAccessControlResponse> // <type:Message>Hello World</type:Message> // <type:Timestamp>2023-09-28T22:17:26.643+02:00</type:Timestamp> // <type:AuthenticatedConsumer>CN="SSIN=aaaaaa", OU=eHealth-platform Belgium, OU=bbbb, OU="SSIN=aaaaaaa", O=Federal Government, C=BE</type:AuthenticatedConsumer> // </ic:CheckAccessControlResponse> // </soapenv:Body> // </soapenv:Envelope> } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.