![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift) TicketBAI -- Send HTTP POSTSee more TicketBAI ExamplesDemonstrates how to send a TicketBAI POST and get the response.Note: This example requires Chilkat v11.0.0 or greater.
func chilkatTest() { var success: Bool = false // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! success = 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", // "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") 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" let resp = CkoHttpResponse()! http.uncommonOptions = "SendGzipped" success = http.httpSb("POST", url: url, sb: sbXml, charset: "utf-8", contentType: "application/octet-stream", response: resp) if success == 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!)") } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.