All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fireflysource.example.HttpsDemo.kt Maven / Gradle / Ivy

The newest version!
package com.fireflysource.example

import com.fireflysource.`$`

fun main() {
    `$`.httpServer()
        .router().get("/").handler { ctx -> ctx.end("Hello https! ") }
        .enableSecureConnection()
        .listen("localhost", 8090)

    `$`.httpClient().get("https://localhost:8090/").submit()
        .thenAccept { response -> println(response.stringBody) }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy