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) Peoplevox SaveDataDemonstrates how to call the Peoplevox SaveData SOAP method. This example adds a new carrier (DHL) to the system.
#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; // 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 = CkHttpW_SynchronousRequest(http,L"qac.peoplevox.net",443,TRUE,req); if (CkHttpW_getLastMethodSuccess(http) != TRUE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkStringBuilderW_Dispose(sbSoapXml); CkStringBuilderW_Dispose(sbCsvData); CkHttpRequestW_Dispose(req); CkHttpW_Dispose(http); 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); return; } xmlResponse = CkXmlW_Create(); success = CkXmlW_LoadXml(xmlResponse,CkHttpResponseW_bodyStr(resp)); wprintf(L"%s\n",CkXmlW_getXml(xmlResponse)); CkHttpResponseW_Dispose(resp); // 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); CkXmlW_Dispose(xmlResponse); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.