C
C
SOAP e-factura.sunat.gob.pe getStatusCdr
See more HTTP Misc Examples
Make a SOAP call to https://e-factura.sunat.gob.pe/ol-it-wsconscpegem/billConsultServiceChilkat C Downloads
#include <C_CkHttp.h>
#include <C_CkXml.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttp http;
HCkXml xml;
const char *strXml;
const char *endPoint;
HCkHttpResponse resp;
int statusCode;
HCkXml xmlResp;
const char *S_Envelope_xmlns_S;
const char *ns0_getStatusResponse_xmlns_ns0;
const char *statusMessage;
success = FALSE;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
http = CkHttp_Create();
// <soapenv:Envelope xmlns:ser="http://service.sunat.gob.pe"
// xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
// xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
// <soapenv:Header>
// <wsse:Security>
// <wsse:UsernameToken>
// <wsse:Username>MY_USERNAME</wsse:Username>
// <wsse:Password>MY_PASSWORD</wsse:Password>
// </wsse:UsernameToken>
// </wsse:Security>
// </soapenv:Header>
// <soapenv:Body>
// <ser:getStatus>
// <rucComprobante>99999999999</rucComprobante>
// <tipoComprobante>01</tipoComprobante>
// <serieComprobante>F001</serieComprobante>
// <numeroComprobante>55555</numeroComprobante>
// </ser:getStatus>
// </soapenv:Body>
// </soapenv:Envelope>
//
xml = CkXml_Create();
CkXml_putTag(xml,"soapenv:Envelope");
CkXml_AddAttribute(xml,"xmlns:ser","http://service.sunat.gob.pe");
CkXml_AddAttribute(xml,"xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
CkXml_AddAttribute(xml,"xmlns:wsse","http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd");
CkXml_UpdateChildContent(xml,"soapenv:Header|wsse:Security|wsse:UsernameToken|wsse:Username","MY_USERNAME");
CkXml_UpdateChildContent(xml,"soapenv:Header|wsse:Security|wsse:UsernameToken|wsse:Password","MY_PASSWORD");
CkXml_UpdateChildContent(xml,"soapenv:Body|ser:getStatus|rucComprobante","99999999999");
CkXml_UpdateChildContent(xml,"soapenv:Body|ser:getStatus|tipoComprobante","01");
CkXml_UpdateChildContent(xml,"soapenv:Body|ser:getStatus|serieComprobante","F001");
CkXml_UpdateChildContent(xml,"soapenv:Body|ser:getStatus|numeroComprobante","55555");
strXml = CkXml_getXml(xml);
CkHttp_SetRequestHeader(http,"SOAPAction","urn:getStatusCdr");
endPoint = "https://e-factura.sunat.gob.pe/ol-it-wsconscpegem/billConsultService";
resp = CkHttpResponse_Create();
success = CkHttp_HttpStr(http,"POST",endPoint,strXml,"utf-8","text/xml",resp);
if (success == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkXml_Dispose(xml);
CkHttpResponse_Dispose(resp);
return;
}
statusCode = CkHttpResponse_getStatusCode(resp);
if (statusCode != 200) {
printf("Non-success status code: %d\n",statusCode);
printf("Response header: %s\n",CkHttpResponse_header(resp));
printf("Response body: %s\n",CkHttpResponse_bodyStr(resp));
printf("Unsuccessful.\n");
CkHttp_Dispose(http);
CkXml_Dispose(xml);
CkHttpResponse_Dispose(resp);
return;
}
xmlResp = CkXml_Create();
CkXml_LoadXml(xmlResp,CkHttpResponse_bodyStr(resp));
printf("%s\n",CkXml_getXml(xmlResp));
// A sample response:
// <?xml version="1.0" encoding="UTF-8"?>
// <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
// <S:Body>
// <ns0:getStatusResponse xmlns:ns0="http://service.sunat.gob.pe">
// <status>
// <statusCode>0001</statusCode>
// <statusMessage>El comprobante existe y est� aceptado.</statusMessage>
// </status>
// </ns0:getStatusResponse>
// </S:Body>
// </S:Envelope>
//
// Parse the response...
S_Envelope_xmlns_S = CkXml_getAttrValue(xml,"xmlns:S");
ns0_getStatusResponse_xmlns_ns0 = CkXml_chilkatPath(xml,"S:Body|ns0:getStatusResponse|(xmlns:ns0)");
statusCode = CkXml_GetChildIntValue(xml,"S:Body|ns0:getStatusResponse|status|statusCode");
statusMessage = CkXml_getChildContent(xml,"S:Body|ns0:getStatusResponse|status|statusMessage");
CkHttp_Dispose(http);
CkXml_Dispose(xml);
CkHttpResponse_Dispose(resp);
CkXml_Dispose(xmlResp);
}