Sample code for 30+ languages & platforms
Unicode C

Another SOAP with MTOM XOP Attachment Example

See more HTTP Examples

Demonstrates another multipart/related MTOM SOAP request that adds additional headers in each MIME sub-part, and also specifies Content-Transfer-Encoding in the sub-parts.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkXmlW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttpW http;
    HCkHttpRequestW req;
    const wchar_t *xmlBody;
    const wchar_t *xmlBody2;
    BOOL useTls;
    HCkHttpResponseW resp;
    HCkXmlW xmlResponse;

    success = FALSE;

    // This example sends a request such as the following:

    // POST /FseInsServicesWeb/services/fseComunicazioneMetadati HTTP/1.1
    // Connection: Keep-Alive
    // Content-Length: 50649
    // Content-Type: multipart/related; type="application/xop+xml"; start="<rootpart@soapui.org>"; start-info="text/xml"; boundary="----=_Part_0_355796458.1662133302632"
    // Accept-Encoding: gzip,deflate
    // Authorization: Basic xxxxx
    // Host: ...
    // SOAPAction: "http://comunicazionemetadati.wsdl.fse.ini.finanze.it/ComunicazioneMetadati"
    // MIME-Version: 1.0
    // 
    // ------=_Part_0_355796458.1662133302632
    // Content-Type: application/xop+xml; charset=UTF-8; type="text/xml"
    // Content-Transfer-Encoding: 8bit
    // Content-ID: <rootpart@soapui.org>
    // 
    // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://comunicazionemetadatirichiesta.xsd.fse.ini.finanze.it" xmlns:tip="http://tipodaticomunicazionemetadati.xsd.fse.ini.finanze.it">
    // <soapenv:Header/>
    // ...
    // 
    // ------=_Part_0_355796458.1662133302632
    // Content-Type: text/xml; charset=Cp1252
    // Content-Transfer-Encoding: quoted-printable
    // Content-ID: <CDA2LAB_190_signed.xml>
    // Content-Disposition: attachment; name="CDA2LAB_190_signed.xml"
    // 
    // <!-- INSERIRE IL RIFERIMENTO AL FOGLIO DI STILE DI AGID OPPURE INSERIRNE UN=
    // ...
    // 
    // ------=_Part_0_355796458.1662133302632--

    http = CkHttpW_Create();
    req = CkHttpRequestW_Create();

    CkHttpRequestW_putHttpVerb(req,L"POST");
    CkHttpRequestW_putPath(req,L"/FseInsServicesWeb/services/fseComunicazioneMetadati");

    // Chilkat will automatically generate and add a boundary string.
    CkHttpRequestW_putContentType(req,L"multipart/related; type=\"application/xop+xml\"; start=\"<rootpart@soapui.org>\"; start-info=\"text/xml\"");
    CkHttpRequestW_AddHeader(req,L"SOAPAction",L"some-SOAP-action");

    CkHttpRequestW_AddHeader(req,L"Connection",L"Keep-Alive");
    CkHttpRequestW_AddHeader(req,L"Accept-Encoding",L"gzip,deflate");
    CkHttpRequestW_AddHeader(req,L"MIME-Version",L"1.0");

    // Chilkat will automatically add the Content-Length and Host headers.

    // The "Authorization: Basic ..."  header is added by setting the Login and Password and specifying Basic authentication:
    CkHttpW_putLogin(http,L"...");
    CkHttpW_putPassword(http,L"...");
    CkHttpW_putBasicAuth(http,TRUE);

    // Add the 1st multipart/related sub-part, which is the SOAP envelope.
    xmlBody = L"<soapenv:Envelope ....";
    success = CkHttpRequestW_AddStringForUpload2(req,L"",L"",xmlBody,L"utf-8",L"application/xop+xml; type=\"text/xml\"; charset=utf-8");

    // Additional headers for the 1st sub-part
    success = CkHttpRequestW_AddSubHeader(req,0,L"Content-ID",L"<rootpart@soapui.org>");
    success = CkHttpRequestW_AddSubHeader(req,0,L"Content-Transfer-Encoding",L"8bit");
    success = CkHttpRequestW_AddSubHeader(req,0,L"Content-Disposition",L"");

    // Add the 2nd multipart/related sub-part, which is the signed XML
    xmlBody2 = L"<!-- INSERIRE IL RIFERIMENT ....";
    success = CkHttpRequestW_AddStringForUpload2(req,L"CDA2LAB_190_signed.xml",L"",xmlBody2,L"Cp1252",L"text/xml; charset=Cp1252");

    // Additional headers for the 2nd sub-part.
    success = CkHttpRequestW_AddSubHeader(req,1,L"Content-ID",L"<CDA2LAB_190_signed.xml>");
    success = CkHttpRequestW_AddSubHeader(req,1,L"Content-Transfer-Encoding",L"quoted-printable");
    success = CkHttpRequestW_AddSubHeader(req,1,L"Content-Disposition",L"attachment; name=\"CDA2LAB_190_signed.xml\"");

    CkHttpW_putFollowRedirects(http,TRUE);

    useTls = TRUE;
    resp = CkHttpResponseW_Create();
    success = CkHttpW_HttpSReq(http,L"fseservicetest.sanita.finanze.it",443,useTls,req,resp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkHttpRequestW_Dispose(req);
        CkHttpResponseW_Dispose(resp);
        return;
    }

    xmlResponse = CkXmlW_Create();
    success = CkXmlW_LoadXml(xmlResponse,CkHttpResponseW_bodyStr(resp));
    wprintf(L"%s\n",CkXmlW_getXml(xmlResponse));


    CkHttpW_Dispose(http);
    CkHttpRequestW_Dispose(req);
    CkHttpResponseW_Dispose(resp);
    CkXmlW_Dispose(xmlResponse);

    }