Unicode C
Unicode C
Belgium eHealth Platform - checkConnection
See more Belgian eHealth Platform Examples
Demonstrates the first operation of PlatformIntegrationConsumerTest (checkConnection), which has no message-level security and therefore no wsse:Security block in the SOAP header. You test the SSL/TLS connection to the SOA platform.Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
#include <C_CkXmlW.h>
#include <C_CkDateTimeW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttpW http;
HCkXmlW xml;
HCkDateTimeW dt;
HCkHttpResponseW resp;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
success = CkHttpW_SetSslClientCertPfx(http,L"SSIN=12345678.acc.p12",L"p12_password");
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
return;
}
// Create the following XML
// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:be:fgov:ehealth:platformintegrationconsumertest:v1"
// xmlns:urn1="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
// <soapenv:Header/>
// <soapenv:Body>
// <urn:CheckConnectionRequest>
// <urn1:Message>Hello World</urn1:Message>
// <urn1:Timestamp>2014-12-30T15:29:03.157+01:00</urn1:Timestamp>
// </urn:CheckConnectionRequest>
// </soapenv:Body>
// </soapenv:Envelope>
xml = CkXmlW_Create();
CkXmlW_putTag(xml,L"soapenv:Envelope");
CkXmlW_AddAttribute(xml,L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
CkXmlW_AddAttribute(xml,L"xmlns:urn",L"urn:be:fgov:ehealth:platformintegrationconsumertest:v1");
CkXmlW_AddAttribute(xml,L"xmlns:urn1",L"urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1");
CkXmlW_UpdateChildContent(xml,L"soapenv:Header",L"");
CkXmlW_UpdateChildContent(xml,L"soapenv:Body|urn:CheckConnectionRequest|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
dt = CkDateTimeW_Create();
CkDateTimeW_SetFromCurrentSystemTime(dt);
CkXmlW_UpdateChildContent(xml,L"soapenv:Body|urn:CheckConnectionRequest|urn1:Timestamp",CkDateTimeW_getAsTimestamp(dt,TRUE));
CkHttpW_SetRequestHeader(http,L"Content-Type",L"text/xml");
resp = CkHttpResponseW_Create();
success = CkHttpW_HttpStr(http,L"POST",L"https://services-acpt.ehealth.fgov.be/PlatformIntegrationConsumerTest/v1",CkXmlW_getXml(xml),L"utf-8",L"application/xml",resp);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkXmlW_Dispose(xml);
CkDateTimeW_Dispose(dt);
CkHttpResponseW_Dispose(resp);
return;
}
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
wprintf(L"response status code = %d\n",CkHttpResponseW_getStatusCode(resp));
// A successful response is a 200 status code, with this sample response:
//
// <?xml version="1.0"?>
// <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:v1="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:v11="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
// <ic:CheckConnectionResponse xmlns:ic="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:type="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
// <type:Message>Hello World</type:Message>
// <type:Timestamp>2023-09-28T21:24:32.925+02:00</type:Timestamp>
// <type:AuthenticatedConsumer>anonymous</type:AuthenticatedConsumer>
// </ic:CheckConnectionResponse>
// </soapenv:Body>
// </soapenv:Envelope>
CkHttpW_Dispose(http);
CkXmlW_Dispose(xml);
CkDateTimeW_Dispose(dt);
CkHttpResponseW_Dispose(resp);
}