Unicode C++
Unicode C++
HTTP POST with XML Body
Demonstrates sending an HTTP POST with a XML body.Chilkat Unicode C++ Downloads
#include <CkHttpW.h>
#include <CkXmlW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
bool success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
// Implements the following CURL command:
// curl -X POST https://example.com/StockQuote \
// -H "Host: www.example.org" \
// -H "Content-Type: application/soap+xml; charset=utf-8" \
// -H "SOAPAction: http://www.example.org/StockPrice" \
// -d '<?xml version="1.0"?>
//
// <soap:Envelope
// xmlns:soap="http://www.w3.org/2003/05/soap-envelope/"
// soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
//
// <soap:Body xmlns:m="http://www.example.org/stock">
// <m:GetStockPrice>
// <m:StockName>IBM</m:StockName>
// </m:GetStockPrice>
// </soap:Body>
//
// </soap:Envelope>'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample XML:
// Generate Code to Create XML
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
// The following XML is sent in the request body.
// <?xml version="1.0" encoding="utf-8"?>
// <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope/" soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
// <soap:Body xmlns:m="http://www.example.org/stock">
// <m:GetStockPrice>
// <m:StockName>IBM</m:StockName>
// </m:GetStockPrice>
// </soap:Body>
// </soap:Envelope>
//
CkXmlW xml;
xml.put_Tag(L"soap:Envelope");
xml.AddAttribute(L"xmlns:soap",L"http://www.w3.org/2003/05/soap-envelope/");
xml.AddAttribute(L"soap:encodingStyle",L"http://www.w3.org/2003/05/soap-encoding");
xml.UpdateAttrAt(L"soap:Body",true,L"xmlns:m",L"http://www.example.org/stock");
xml.UpdateChildContent(L"soap:Body|m:GetStockPrice|m:StockName",L"IBM");
http.SetRequestHeader(L"SOAPAction",L"http://www.example.org/StockPrice");
http.SetRequestHeader(L"Host",L"www.example.org");
http.SetRequestHeader(L"Content-Type",L"application/soap+xml; charset=utf-8");
CkStringBuilderW sbRequestBody;
xml.GetXmlSb(sbRequestBody);
CkHttpResponseW resp;
success = http.HttpSb(L"POST",L"https://example.com/StockQuote",sbRequestBody,L"utf-8",L"application/soap+xml; charset=utf-8",resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp.get_StatusCode());
wprintf(L"%s\n",resp.bodyStr());
}