SOAP WSDL Generate Code

Application / stamp

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
func chilkatTest() {
    let xml = CkoXml()
    xml.Tag = "soapenv:Envelope"
    xml.AddAttribute("xmlns:soapenv", value: "http://schemas.xmlsoap.org/soap/envelope/")
    xml.AddAttribute("xmlns:sta", value: "http://facturacion.finkok.com/stamp")
    xml.UpdateChildContent("soapenv:Header", value: "")
    xml.UpdateChildContent("soapenv:Body|sta:stamp|sta:xml", value: "BqozVXeZZg==")
    xml.UpdateChildContent("soapenv:Body|sta:stamp|sta:username", value: "string")
    xml.UpdateChildContent("soapenv:Body|sta:stamp|sta:password", value: "string")

    // In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required. 
    xml.EmitXmlDecl = false
    var soapRequestBody: String? = xml.GetXml()

    var endpoint: String? = "https://demo-facturacion.finkok.com/servicios/soap/stamp"
    var soapAction: String? = "stamp"
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    var contentType: String? = "text/xml"

    let http = CkoHttp()

    http.ClearHeaders()
    http.SetRequestHeader("Content-Type", value: contentType)
    http.SetRequestHeader("SOAPAction", value: soapAction)

    var resp: CkoHttpResponse? = http.PostXml(endpoint, xmlDoc: soapRequestBody, charset: "utf-8")
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        print("Failed to send SOAP request.")
        return
    }

    // Get the XML response body.
    let responseXml = CkoXml()
    resp!.GetBodyXml(responseXml)

    var statusCode: Int = resp!.StatusCode.intValue
    print("response status code: \(statusCode)")

    resp = nil

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    if statusCode != 200 {
        print("\(responseXml.GetXml())")
        return
    }

    print("\(responseXml.GetXml())")

    // 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).

    var xml: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:xml")
    var UUID: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:UUID")
    var faultstring: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:faultstring")
    var Fecha: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Fecha")
    var CodEstatus: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:CodEstatus")
    var faultcode: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:faultcode")
    var SatSeal: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:SatSeal")
    var IdIncidencia: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:IdIncidencia")
    var RfcEmisor: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:RfcEmisor")
    var Uuid: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:Uuid")
    var CodigoError: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:CodigoError")
    var WorkProcessId: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:WorkProcessId")
    var MensajeIncidencia: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:MensajeIncidencia")
    var ExtraInfo: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:ExtraInfo")
    var NoCertificadoPac: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:NoCertificadoPac")
    var FechaRegistro: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:Incidencias|*:Incidencia|*:FechaRegistro")
    var NoCertificadoSAT: String? = responseXml.GetChildContent("*:Body|*:stampResponse|*:stampResult|*:NoCertificadoSAT")

}
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>
            <sta:xml>BqozVXeZZg==</sta:xml>
            <sta:username>string</sta:username>
            <sta:password>string</sta:password>
        </sta:stamp>
    </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:stampResponse>
            <sta:stampResult>
                <s0:xml>string</s0:xml>
                <s0:UUID>string</s0:UUID>
                <s0:faultstring>string</s0:faultstring>
                <s0:Fecha>string</s0:Fecha>
                <s0:CodEstatus>string</s0:CodEstatus>
                <s0:faultcode>string</s0:faultcode>
                <s0:SatSeal>string</s0:SatSeal>
                <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:NoCertificadoSAT>string</s0:NoCertificadoSAT>
            </sta:stampResult>
        </sta:stampResponse>
    </soapenv:Body>
</soapenv:Envelope>