Unicode C++
Unicode C++
SOAP Request to fseservicetest.sanita.finanze.it with Smart Card Authentication (TS-CNS Italian Card)
See more HTTP Misc Examples
Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Smart Card (TS-CNS Italian Card).Chilkat Unicode C++ Downloads
#include <CkHttpW.h>
#include <CkXmlW.h>
#include <CkHttpRequestW.h>
#include <CkCertW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
CkXmlW xml;
success = false;
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
// Create the SOAP envelope...
xml.put_Tag(L"soapenv:Envelope");
xml.AddAttribute(L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
xml.AddAttribute(L"xmlns:stat",L"http://statoconsensirichiesta.xsd.fse.ini.finanze.it");
xml.AddAttribute(L"xmlns:tip",L"http://tipodatistatoconsensi.xsd.fse.ini.finanze.it");
xml.UpdateChildContent(L"soapenv:Header",L"");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoUtente",L"XXXXXXAAABBBCCC");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:pinCode",L"...");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoOrganizzazione",L"999");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:StrutturaUtente",L"123456789");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:RuoloUtente",L"ZZZ");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:ContestoOperativo",L"");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoGenitoreTutore",L"");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:PresaInCarico",L"true");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:TipoAttivita",L"READ");
xml.UpdateChildContent(L"soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoConsenso",L"ABCDEFGHIJKLM");
const wchar_t *soapEnvelope = xml.getXml();
const wchar_t *domain = L"fseservicetest.sanita.finanze.it";
const wchar_t *path = L"/FseInsServicesWeb/services/fseStatoConsensi";
CkHttpRequestW req;
req.put_HttpVerb(L"POST");
req.put_SendCharset(false);
req.AddHeader(L"Content-Type",L"application/soap+xml; charset=utf-8");
req.put_Path(path);
success = req.LoadBodyFromString(soapEnvelope,L"utf-8");
// Load the default certificate from the smartcard currently in the reader.
// (This assumes only one reader with one smartcard containing one certificate.
// If the situation is more complex, you can do it with Chilkat, but it requires
// using the Chilkat certificate store object to get the desired certificate
// from the desired smart card.)
//
// Note: This is for Windows-only.
CkCertW cert;
success = cert.LoadFromSmartcard(L"");
if (success == false) {
wprintf(L"%s\n",cert.lastErrorText());
return;
}
// Tell the Chilkat HTTP object to use the certificate for client authentication.
success = http.SetSslClientCert(cert);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
http.put_TlsVersion(L"TLS 1.1");
CkHttpResponseW resp;
success = http.HttpSReq(domain,443,true,req,resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkXmlW xmlResp;
success = xmlResp.LoadXml(resp.bodyStr());
wprintf(L"%s\n",xmlResp.getXml());
}