Sample code for 30+ languages & platforms
Unicode C

Peoplevox SaveData

See more Peoplevox Examples

Demonstrates how to call the Peoplevox SaveData SOAP method. This example adds a new carrier (DHL) to the system.

Chilkat Unicode C Downloads

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

void ChilkatSample(void)
    {
    BOOL success;
    HCkStringBuilderW sbSoapXml;
    HCkStringBuilderW sbCsvData;
    int numReplacements;
    HCkHttpRequestW req;
    HCkHttpW http;
    HCkHttpResponseW resp;
    HCkXmlW xmlResponse;
    const wchar_t *reference;
    const wchar_t *status;

    success = FALSE;

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // Sends a POST that looks like this:

    // 	POST /PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx HTTP/1.1
    // 	Content-Type: text/xml;charset=UTF-8
    // 	SOAPAction: http://www.peoplevox.net/SaveData
    // 	Content-Length: (automatically computed and added by Chilkat)
    // 	Host: qac.peoplevox.net
    // 
    // 	<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:peop="http://www.peoplevox.net/">
    // 	   <soap:Header>
    // 	      <peop:UserSessionCredentials>
    // 	         <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>
    // 	         <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>
    // 	         <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>
    // 	      </peop:UserSessionCredentials>
    // 	   </soap:Header>
    //         <soap:Body>
    //           <peop:SaveData>
    //              <peop:saveRequest>
    //                 <peop:TemplateName>Carriers</peop:TemplateName>
    //                 <peop:CsvData>CSV_DATA</peop:CsvData>
    //                 <peop:Action>0</peop:Action>
    //              </peop:saveRequest>
    //           </peop:SaveData>
    //        </soap:Body>
    // 	</soap:Envelope>
    // 

    // Notice that a UserId is needed here.  This is different than the username required for Peoplevox authentication.
    //    The UserId for the admin account is 1.
    //     
    sbSoapXml = CkStringBuilderW_Create();
    CkStringBuilderW_Append(sbSoapXml,L"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:peop=\"http://www.peoplevox.net/\">\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"   <soap:Header>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"      <peop:UserSessionCredentials>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"         <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"         <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"         <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"      </peop:UserSessionCredentials>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"   </soap:Header>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"   <soap:Body>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"      <peop:SaveData>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"         <peop:saveRequest>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"            <peop:TemplateName>Carriers</peop:TemplateName>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"            <peop:CsvData>CSV_DATA</peop:CsvData>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"            <peop:Action>0</peop:Action>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"         </peop:saveRequest>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"      </peop:SaveData>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"   </soap:Body>\r\n");
    CkStringBuilderW_Append(sbSoapXml,L"</soap:Envelope>");

    sbCsvData = CkStringBuilderW_Create();
    CkStringBuilderW_Append(sbCsvData,L"Name,Reference\r\n");
    CkStringBuilderW_Append(sbCsvData,L"DHL,D0001");
    numReplacements = CkStringBuilderW_Replace(sbSoapXml,L"CSV_DATA",CkStringBuilderW_getAsString(sbCsvData));

    req = CkHttpRequestW_Create();
    CkHttpRequestW_putHttpVerb(req,L"POST");
    CkHttpRequestW_putSendCharset(req,TRUE);
    CkHttpRequestW_putCharset(req,L"utf-8");
    CkHttpRequestW_AddHeader(req,L"Content-Type",L"text/xml");
    CkHttpRequestW_AddHeader(req,L"SOAPAction",L"http://www.peoplevox.net/SaveData");
    CkHttpRequestW_putPath(req,L"/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx");
    success = CkHttpRequestW_LoadBodyFromString(req,CkStringBuilderW_getAsString(sbSoapXml),L"utf-8");

    http = CkHttpW_Create();
    CkHttpW_putFollowRedirects(http,TRUE);

    resp = CkHttpResponseW_Create();
    success = CkHttpW_HttpSReq(http,L"qac.peoplevox.net",443,TRUE,req,resp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkStringBuilderW_Dispose(sbSoapXml);
        CkStringBuilderW_Dispose(sbCsvData);
        CkHttpRequestW_Dispose(req);
        CkHttpW_Dispose(http);
        CkHttpResponseW_Dispose(resp);
        return;
    }

    // We should expect a 200 response if successful.
    if (CkHttpResponseW_getStatusCode(resp) != 200) {
        wprintf(L"Response StatusCode = %d\n",CkHttpResponseW_getStatusCode(resp));
        wprintf(L"Response StatusLine: %s\n",CkHttpResponseW_statusLine(resp));
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
        CkStringBuilderW_Dispose(sbSoapXml);
        CkStringBuilderW_Dispose(sbCsvData);
        CkHttpRequestW_Dispose(req);
        CkHttpW_Dispose(http);
        CkHttpResponseW_Dispose(resp);
        return;
    }

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

    // A successful response is shown below.
    // To parse a successful response:
    reference = CkXmlW_chilkatPath(xmlResponse,L"soap:Body|SaveDataResponse|SaveDataResult|Statuses|IntegrationStatusResponse|Reference|*");
    wprintf(L"Reference = %s\n",reference);
    status = CkXmlW_chilkatPath(xmlResponse,L"soap:Body|SaveDataResponse|SaveDataResult|Statuses|IntegrationStatusResponse|Status|*");
    wprintf(L"Status = %s\n",status);

    // <?xml version="1.0" encoding="utf-8" ?>
    // <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    //     <soap:Body>
    //         <SaveDataResponse xmlns="http://www.peoplevox.net/">
    //             <SaveDataResult>
    //                 <ResponseId>0</ResponseId>
    //                 <TotalCount>1</TotalCount>
    //                 <Detail />
    //                 <Statuses>
    //                     <IntegrationStatusResponse>
    //                         <Reference>D0001</Reference>
    //                         <Status>Success</Status>
    //                         <LineNo>0</LineNo>
    //                     </IntegrationStatusResponse>
    //                 </Statuses>
    //                 <ImportingQueueId>0</ImportingQueueId>
    //                 <SalesOrdersToDespatchIds />
    //             </SaveDataResult>
    //         </SaveDataResponse>
    //     </soap:Body>
    // </soap:Envelope>


    CkStringBuilderW_Dispose(sbSoapXml);
    CkStringBuilderW_Dispose(sbCsvData);
    CkHttpRequestW_Dispose(req);
    CkHttpW_Dispose(http);
    CkHttpResponseW_Dispose(resp);
    CkXmlW_Dispose(xmlResponse);

    }