Sample code for 30+ languages & platforms
Swift

TicketBAI -- Send HTTP POST

See more TicketBAI Examples

Demonstrates how to send a TicketBAI POST and get the response.

Chilkat Swift Downloads

Swift

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(pfxPath: "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(path: "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.updateString(jsonPath: "con", value: "LROE")
    json.updateString(jsonPath: "apa", value: "1.1")
    json.updateString(jsonPath: "inte.nif", value: "número de identificación fiscal")
    json.updateString(jsonPath: "inte.nrs", value: "nombre o Razón social")
    json.updateString(jsonPath: "inte.ap1", value: "primer apellido")
    json.updateString(jsonPath: "inte.ap2", value: "segundo apellido")
    json.updateString(jsonPath: "drs.mode", value: "140")
    json.updateString(jsonPath: "drs.ejer", value: "ejercicio")

    // Add required headers...
    http.setRequestHeader(name: "eus-bizkaia-n3-version", value: "1.0")
    http.setRequestHeader(name: "eus-bizkaia-n3-content-type", value: "application/xml")
    http.setRequestHeader(name: "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(verb: "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!)")

}