SOAP WSDL Generate Code

TimbradoSoap12Binding / timbrar

ASP AutoIt C C (Unicode) C++ C++ (Unicode) C# DataFlex Delphi Foxpro Go Java Node.js Objective-C Perl PHP Extension PowerBuilder Powershell PureBasic Python CkPython Ruby SQL Server Swift TCL VB.NET VB6 VBScript Xojo
#include <C_CkXmlW.h>
#include <C_CkHttpW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkXmlW xml;
    const wchar_t *soapRequestBody;
    const wchar_t *endpoint;
    const wchar_t *soapAction;
    const wchar_t *contentType;
    HCkHttpW http;
    HCkHttpResponseW resp;
    HCkXmlW responseXml;
    int statusCode;
    const wchar_t *mensaje;
    const wchar_t *cadenaOriginal;
    const wchar_t *certificadoSAT;
    const wchar_t *cfdiTimbrado;
    const wchar_t *fechaTimbrado;
    const wchar_t *qrCode;
    const wchar_t *selloSAT;
    int status;
    const wchar_t *uuid;
    const wchar_t *versionTFD;

    xml = CkXmlW_Create();
    CkXmlW_putTag(xml,L"soap:Envelope");
    CkXmlW_AddAttribute(xml,L"xmlns:soap",L"http://www.w3.org/2003/05/soap-envelope");
    CkXmlW_AddAttribute(xml,L"xmlns:ns",L"http://timbrado.ws.cfdi.solucionfactible.com");
    CkXmlW_UpdateChildContent(xml,L"soap:Header",L"");
    CkXmlW_UpdateChildContent(xml,L"soap:Body|ns:timbrar|ns:usuario",L"string");
    CkXmlW_UpdateChildContent(xml,L"soap:Body|ns:timbrar|ns:password",L"string");
    CkXmlW_UpdateChildContent(xml,L"soap:Body|ns:timbrar|ns:cfdi",L"BqozVXeZZg==");
    CkXmlW_UpdateChildContent(xml,L"soap:Body|ns:timbrar|ns:zip",L"true");

    // In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. 
    CkXmlW_putEmitXmlDecl(xml,FALSE);
    soapRequestBody = CkXmlW_getXml(xml);

    endpoint = L"";
    soapAction = L"urn:timbrar";
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    contentType = L"text/xml";

    http = CkHttpW_Create();

    CkHttpW_ClearHeaders(http);
    CkHttpW_SetRequestHeader(http,L"Content-Type",contentType);
    CkHttpW_SetRequestHeader(http,L"SOAPAction",soapAction);

    resp = CkHttpW_PostXml(http,endpoint,soapRequestBody,L"utf-8");
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        wprintf(L"Failed to send SOAP request.\n");
        CkXmlW_Dispose(xml);
        CkHttpW_Dispose(http);
        return;
    }

    // Get the XML response body.
    responseXml = CkXmlW_Create();
    CkHttpResponseW_GetBodyXml(resp,responseXml);

    statusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"response status code: %d\n",statusCode);

    CkHttpResponseW_Dispose(resp);

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if (statusCode != 200) {
        wprintf(L"%s\n",CkXmlW_getXml(responseXml));
        CkXmlW_Dispose(xml);
        CkHttpW_Dispose(http);
        CkXmlW_Dispose(responseXml);
        return;
    }

    wprintf(L"%s\n",CkXmlW_getXml(responseXml));

    // Parse the successful SOAP response XML.

    // This is a sample of the response XML, but the namespace prefixes will be different.
    // We can parse the result using "*" for the namespace prefixes (see below).

    mensaje = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:mensaje");
    cadenaOriginal = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:cadenaOriginal");
    certificadoSAT = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:certificadoSAT");
    cfdiTimbrado = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:cfdiTimbrado");
    fechaTimbrado = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:fechaTimbrado");
    mensaje = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:mensaje");
    qrCode = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:qrCode");
    selloSAT = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:selloSAT");
    status = CkXmlW_GetChildIntValue(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:status");
    uuid = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:uuid");
    versionTFD = CkXmlW_getChildContent(responseXml,L"*:Body|*:timbrarResponse|*:return|*:resultados|*:versionTFD");
    status = CkXmlW_GetChildIntValue(responseXml,L"*:Body|*:timbrarResponse|*:return|*:status");


    CkXmlW_Dispose(xml);
    CkHttpW_Dispose(http);
    CkXmlW_Dispose(responseXml);

    }
Request XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ns="http://timbrado.ws.cfdi.solucionfactible.com">
    <soap:Header/>
    <soap:Body>
        <ns:timbrar>
            <ns:usuario>string</ns:usuario>
            <ns:password>string</ns:password>
            <ns:cfdi>BqozVXeZZg==</ns:cfdi>
            <ns:zip>true</ns:zip>
        </ns:timbrar>
    </soap:Body>
</soap:Envelope>
Response XML
<soap:Envelope xmlns:ns="http://timbrado.ws.cfdi.solucionfactible.com" xmlns:ax27="http://timbrado.ws.cfdi.solucionfactible.com/xsd" xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Header/>
    <soap:Body>
        <ns:timbrarResponse>
            <ns:return>
                <ax27:mensaje>string</ax27:mensaje>
                <ax27:resultados>
                    <ax27:cadenaOriginal>string</ax27:cadenaOriginal>
                    <ax27:certificadoSAT>string</ax27:certificadoSAT>
                    <ax27:cfdiTimbrado>BqozVXeZZg==</ax27:cfdiTimbrado>
                    <ax27:fechaTimbrado>dateTime</ax27:fechaTimbrado>
                    <ax27:mensaje>string</ax27:mensaje>
                    <ax27:qrCode>BqozVXeZZg==</ax27:qrCode>
                    <ax27:selloSAT>string</ax27:selloSAT>
                    <ax27:status>1042</ax27:status>
                    <ax27:uuid>string</ax27:uuid>
                    <ax27:versionTFD>string</ax27:versionTFD>
                </ax27:resultados>
                <ax27:status>1042</ax27:status>
            </ns:return>
        </ns:timbrarResponse>
    </soap:Body>
</soap:Envelope>