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
(Unicode C++) SOAP Request to fseservicetest.sanita.finanze.it with Smart Card Authentication (TS-CNS Italian Card)Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Smart Card (TS-CNS Italian Card).
#include <CkHttpW.h> #include <CkXmlW.h> #include <CkHttpRequestW.h> #include <CkCertW.h> #include <CkHttpResponseW.h> void ChilkatSample(void) { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttpW http; CkXmlW xml; bool 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 = http.SynchronousRequest(domain,443,true,req); if (http.get_LastMethodSuccess() == false) { wprintf(L"%s\n",http.lastErrorText()); return; } CkXmlW xmlResp; success = xmlResp.LoadXml(resp->bodyStr()); wprintf(L"%s\n",xmlResp.getXml()); delete resp; } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.