Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift 3,4,5...) SII POST boleta.electronica.envioAlmacenamiento de un conjunto de boletas en el SII For more information, see https://www4c.sii.cl/bolcoreinternetui/api/
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! var success: Bool // Implements the following CURL command: // curl -X POST "https://pangal.sii.cl/recursos/v1/boleta.electronica.envio" -H "accept: application/json" // -H "User-Agent: Mozilla/4.0 ( compatible; PROG 1.0; Windows NT)" // -H "Cookie: YZVQNQY4J5DT9" -H "Content-Type: multipart/form-data" // -F "rutSender=1234" -F "dvSender=xyz" -F "rutCompany=9999" -F "dvCompany=abc" // -F "archivo=@starfish20.jpg;type=image/jpeg" // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code let req = CkoHttpRequest()! req.httpVerb = "POST" req.path = "/recursos/v1/boleta.electronica.envio" req.contentType = "multipart/form-data" req.addParam("rutSender", value: "66666666") req.addParam("dvSender", value: "6") req.addParam("rutCompany", value: "60803000") req.addParam("dvCompany", value: "K") // Add an XML file that contains something like this: // <?xml version="1.0" encoding="ISO-8859-1"?> // <EnvioBOLETA version="1.0" xmlns="http://www.sii.cl/SiiDte" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sii.cl/SiiDte EnvioBOLETA_v11.xsd"> // <SetDTE ID="SetDocB0T39_20201103_131999"> // <Caratula version="1.0"> // ... var xmlStr: String? = "..." success = req.addString(forUpload2: "archivo", filename: "envioBoleta.xml", strData: xmlStr, charset: "ISO-8859-1", contentType: "text/xml") req.addHeader("Expect", value: "100-continue") req.addHeader("User-Agent", value: "Mozilla/4.0 ( compatible; PROG 1.0; Windows NT)") req.addHeader("Cookie", value: "TOKEN=YZVQNQY4J5DT9") req.addHeader("accept", value: "application/json") req.addHeader("Content-Type", value: "multipart/form-data") // For debugging, you can save the exact HTTP request sent and response received // to a session log file: http.sessionLogFilename = "someDir/sessionLog.txt" // Use one of the following domains, depending on the environment: // pangal.sii.cl - Certification Environment // rahue.sii.cl - Production Environment var resp: CkoHttpResponse? = http.synchronousRequest("pangal.sii.cl", port: 443, ssl: true, req: req) if http.lastMethodSuccess == false { print("\(http.lastErrorText!)") return } let sbResponseBody = CkoStringBuilder()! resp!.getBodySb(sbResponseBody) let jResp = CkoJsonObject()! jResp.loadSb(sbResponseBody) jResp.emitCompact = false print("Response Body:") print("\(jResp.emit()!)") var respStatusCode: Int = resp!.statusCode.intValue print("Response Status Code = \(respStatusCode)") if respStatusCode >= 400 { print("Response Header:") print("\(resp!.header!)") print("Failed.") resp = nil return } resp = nil // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "rut_emisor": "45000054-K", // "rut_envia": "83154595-0", // "trackid": 1014, // "fecha_recepcion": "2020-09-01 20:30:10", // "estado": "REC", // "file": "boleta-2020-09-01-001.xml" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON var rut_emisor: String? = jResp.string(of: "rut_emisor") var rut_envia: String? = jResp.string(of: "rut_envia") var trackid: Int = jResp.int(of: "trackid").intValue var fecha_recepcion: String? = jResp.string(of: "fecha_recepcion") var estado: String? = jResp.string(of: "estado") var file: String? = jResp.string(of: "file") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.