Sample code for 30+ languages & platforms
Unicode C++

SOAP Request to fseservicetest.sanita.finanze.it with Basic Authentication

See more HTTP Misc Examples

Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Basic Authentication.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>
#include <CkXmlW.h>
#include <CkHttpRequestW.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;

    // 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");

    // User name and Password for Basic Authentication 
    http.put_Login(L"XXXXXXAAABBBCCC");
    http.put_Password(L"MYPASSWORD");

    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());
    }