import sys
import chilkat2
xml = chilkat2.Xml()
xml.Tag = "soap:Envelope"
xml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope")
xml.AddAttribute("xmlns:ns","http://timbrado.ws.cfdi.solucionfactible.com")
xml.UpdateChildContent("soap:Header","")
xml.UpdateChildContent("soap:Body|ns:timbrar|ns:usuario","string")
xml.UpdateChildContent("soap:Body|ns:timbrar|ns:password","string")
xml.UpdateChildContent("soap:Body|ns:timbrar|ns:cfdi","BqozVXeZZg==")
xml.UpdateChildContent("soap:Body|ns:timbrar|ns:zip","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.
xml.EmitXmlDecl = False
soapRequestBody = xml.GetXml()
endpoint = ""
soapAction = "urn:timbrar"# For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
contentType = "text/xml"
http = chilkat2.Http()
http.ClearHeaders()
http.SetRequestHeader("Content-Type",contentType)
http.SetRequestHeader("SOAPAction",soapAction)
# resp is a CkHttpResponse
resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
if (http.LastMethodSuccess == False):
print(http.LastErrorText)
print("Failed to send SOAP request.")
sys.exit()
# Get the XML response body.
responseXml = chilkat2.Xml()
resp.GetBodyXml(responseXml)
statusCode = resp.StatusCodeprint("response status code: " + str(statusCode))
# If the status code does not indicate succcess, then show the response XML,
# which probably contains error information.if (statusCode != 200):
print(responseXml.GetXml())
sys.exit()
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).
mensaje = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:mensaje")
cadenaOriginal = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:cadenaOriginal")
certificadoSAT = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:certificadoSAT")
cfdiTimbrado = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:cfdiTimbrado")
fechaTimbrado = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:fechaTimbrado")
mensaje = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:mensaje")
qrCode = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:qrCode")
selloSAT = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:selloSAT")
status = responseXml.GetChildIntValue("*:Body|*:timbrarResponse|*:return|*:resultados|*:status")
uuid = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:uuid")
versionTFD = responseXml.GetChildContent("*:Body|*:timbrarResponse|*:return|*:resultados|*:versionTFD")
status = responseXml.GetChildIntValue("*:Body|*:timbrarResponse|*:return|*:status")