SOAP WSDL Generate Code

Application / stamp_async

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 *status;
    const wchar_t *IdIncidencia;
    const wchar_t *RfcEmisor;
    const wchar_t *Uuid;
    const wchar_t *CodigoError;
    const wchar_t *WorkProcessId;
    const wchar_t *MensajeIncidencia;
    const wchar_t *ExtraInfo;
    const wchar_t *NoCertificadoPac;
    const wchar_t *FechaRegistro;
    const wchar_t *id;

    xml = CkXmlW_Create();
    CkXmlW_putTag(xml,L"soapenv:Envelope");
    CkXmlW_AddAttribute(xml,L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/");
    CkXmlW_AddAttribute(xml,L"xmlns:sta",L"http://facturacion.finkok.com/stamp");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Header",L"");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|sta:stamp_async|sta:file",L"BqozVXeZZg==");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|sta:stamp_async|sta:username",L"string");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|sta:stamp_async|sta:password",L"string");
    CkXmlW_UpdateChildContent(xml,L"soapenv:Body|sta:stamp_async|sta:ctype",L"zip");

    // 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"https://demo-facturacion.finkok.com/servicios/soap/stamp";
    soapAction = L"stamp_async";
    //  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).

    status = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:status");
    IdIncidencia = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:IdIncidencia");
    RfcEmisor = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:RfcEmisor");
    Uuid = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:Uuid");
    CodigoError = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:CodigoError");
    WorkProcessId = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:WorkProcessId");
    MensajeIncidencia = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:MensajeIncidencia");
    ExtraInfo = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:ExtraInfo");
    NoCertificadoPac = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:NoCertificadoPac");
    FechaRegistro = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:Incidencias|*:Incidencia|*:FechaRegistro");
    id = CkXmlW_getChildContent(responseXml,L"*:Body|*:stamp_asyncResponse|*:stamp_asyncResult|*:id");


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

    }
Request XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sta="http://facturacion.finkok.com/stamp">
    <soapenv:Header/>
    <soapenv:Body>
        <sta:stamp_async>
            <sta:file>BqozVXeZZg==</sta:file>
            <sta:username>string</sta:username>
            <sta:password>string</sta:password>
            <sta:ctype>zip</sta:ctype>
        </sta:stamp_async>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sta="http://facturacion.finkok.com/stamp" xmlns:s0="apps.services.soap.core.views">
    <soapenv:Header/>
    <soapenv:Body>
        <sta:stamp_asyncResponse>
            <sta:stamp_asyncResult>
                <s0:status>string</s0:status>
                <s0:Incidencias>
                    <s0:Incidencia>
                        <s0:IdIncidencia>string</s0:IdIncidencia>
                        <s0:RfcEmisor>string</s0:RfcEmisor>
                        <s0:Uuid>string</s0:Uuid>
                        <s0:CodigoError>string</s0:CodigoError>
                        <s0:WorkProcessId>string</s0:WorkProcessId>
                        <s0:MensajeIncidencia>string</s0:MensajeIncidencia>
                        <s0:ExtraInfo>string</s0:ExtraInfo>
                        <s0:NoCertificadoPac>string</s0:NoCertificadoPac>
                        <s0:FechaRegistro>string</s0:FechaRegistro>
                    </s0:Incidencia>
                </s0:Incidencias>
                <s0:id>string</s0:id>
            </sta:stamp_asyncResult>
        </sta:stamp_asyncResponse>
    </soapenv:Body>
</soapenv:Envelope>