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...) TicketBAI -- Send HTTP POSTSee more TicketBAI ExamplesDemonstrates how to send a TicketBAI POST and get the response.
func chilkatTest() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! var success: Bool = http.setSslClientCertPfx("your.pfx", pfxPassword: "pfx_password") if success == false { print("\(http.lastErrorText!)") return } // Get the XML we wish to send in the body of the request. let sbXml = CkoStringBuilder()! success = sbXml.loadFile("qa_data/payload.xml", charset: "utf-8") if success == false { print("Failed to load XML that is to be the HTTP request body") return } // Build the following JSON // { // "con": "LROE", // "apa": "1.1", // "inte": { // "nif": "número de identificación fiscal", // "nrs": "nombre o Razón social", // "ap1": "primer apellido", // "ap2": "segundo apellido" // }, // "drs": { // "mode": "140/240", // "ejer": "ejercicio" // } // } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON let json = CkoJsonObject()! json.update("con", value: "LROE") json.update("apa", value: "1.1") json.update("inte.nif", value: "número de identificación fiscal") json.update("inte.nrs", value: "nombre o Razón social") json.update("inte.ap1", value: "primer apellido") json.update("inte.ap2", value: "segundo apellido") json.update("drs.mode", value: "140/240") json.update("drs.ejer", value: "ejercicio") // Add required headers... http.setRequestHeader("eus-bizkaia-n3-version", value: "1.0") http.setRequestHeader("eus-bizkaia-n3-content-type", value: "application/xml") http.setRequestHeader("eus-bizkaia-n3-data", value: json.emit()) var url: String? = "https://pruesarrerak.bizkaia.eus/N3B4000M/aurkezpena" var bGzip: Bool = true var resp: CkoHttpResponse? = http.pTextSb("POST", url: url, textData: sbXml, charset: "utf-8", contentType: "application/octet-stream", md5: false, gzip: bGzip) if http.lastMethodSuccess == false { print("\(http.lastErrorText!)") return } http.clearHeaders() print("response status code: \(resp!.statusCode.intValue)") // Examine the response (it is already decompressed) print("response body:") print("\(resp!.bodyStr!)") resp = nil } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.