Frequently Asked Questions

In this section, we provide answers to the questions you frequently ask us.

Can’t find an answer for your question? Head over our #ktor Kotlin Slack channel,and we will try to help you!

Table of contents:

What is the proper way to pronounce ktor?

kay-tor

How do I put questions, report bugs, contact you, contribute, give feedback, etc.?

Depending on the content, you might consider several channels:

  • GitHub: Feature request, change suggestions/proposals, bugs and PRs.
  • Slack: Questions, troubleshooting, guidance etc.
  • StackOverflow: Questions.

Rationale:

For questions or troubleshooting we highly recommend you to use Slack or StackOverflow.

Think that using GitHub issues would notify all the people that is subscribed potentially with emails,troubleshooting usually requires several questions and answers, that could be a lot of emailsspread in the time, and maybe the people subscribed want to be informed about bugs, fixes, new things introducedor proposed, but maybe they are not interested in other things.

If you have enough time or you prefer not to join Slack, you can also ask questions at StackOverflow.With slack being an hybrid between chat and forum, we can contact each other faster and troubleshoot things in less time.

When troubleshooting, if we determine that there is a bug, or something to improve, you can report it a GitHub.Of course, it is not a good idea either to keep a bug report (once confirmed) just in Slack since it could be forgotten,so lets put them in GitHub.

Pull Requests:

If you have a functionality or bugfix you think would be worth including in Ktor, you can create a PR.

Have in mind that we usually review and merge PRs in batches, so the PR could be outstanding for a few weeks.But still we encourage you to contribute if you can!

If you have a bugfix that need to use right away we recommend you to fork Ktor, compile it yourself,and temporarily publish a patched version in your own artifactory, bintray or similar and use that versionuntil it is merged and a new version released (since the timing might not be aligned with your needs).

What does CIO mean?

CIO stands for Coroutine-based I/O. Usually we call it to an engine that uses Kotlin and Coroutines to implementthe logic implementing an IETF RFC or another protocol without relying on external JVM-based libraries.

Ktor imports are not being resolved. Imports are in red.

Ensure that you are including the ktor artifact. For example, for gradle and Netty engine it would be:

  1. dependencies {
  2. compile("io.ktor:ktor-server-netty:$ktor_version")
  3. }

Does ktor provide a way to catch IPC signals (e.g. SIGTERM or SIGINT) so the server shutdown can be handled gracefully?

If you are running a DevelopmentEngine/EngineMain, it will be handled automatically.

Otherwise you will have to handle it manually. You can use Runtime.getRuntime().addShutdownHook JVM’s facility.

How do I get the client IP behind a proxy?

The property call.request.origin gives connection information about the original caller (the proxy) if the proxy provides proper headers, and the feature XForwardedHeaderSupport is installed.

I get the error ‘java.lang.IllegalStateException: No instance for key AttributeKey: Locations’

You get this error if you try to use the locations feature without actually installing it. Check the locations feature: https://ktor.io/features/locations.html

How can I test the latest commits on master?

You can use jitpack to get builds from master that are not yet released:https://jitpack.io/#ktorio/ktorAlso you can build Ktor from source, and use your mavenLocal repository for the artifactor to upload your artifacts to your own artifactory/bintray.

How can I be sure of which version of Ktor am I using?

You can use the DefaultHeaders feature that will send aServer header with the Ktor version on it.Something similar to Server: ktor-server-core/1.0.0 ktor-server-core/1.0.0 should be sent as part of the response headers.

Website accessibility tips and tricks

You can use the keys s (search), t (github file finder flavor) or # to access the search in any page of the documentation website. The # version will limit the search to the heading sections in the current page.

In the search you can either select the options with the mouse (or fingers on touch devices), or using the keyboard arrows and the return key to go to the currently selected page.

This search only uses page titles, and keywords for the search. It is also possible to do a Google search in the ktor.io domain to do a full text search on all its contents.

Long code fragments that are folded, can be expanded by either clicking on the '+'/'-' symbol that always appears in the top left corner of mobile devices or on hover on devices with mouse. You can also double click the fragment to expand it. In addition to expanding it, this action selects the text so you can copy the fragments easily with cmd + c on mac, or ctrl + c in other operating systems.

You can click on the headings and some notes, to get an anchored link to the sections. After clicking, you can copy the new url in your browser including the # to link to a specific section in that page.

My route is not being executed, how can I debug it?

Ktor provides a tracing mechanism for the routing feature to help troubleshootingrouting decisions. Check the Tracing the routing decisions section in the Routing page.

I get a io.ktor.pipeline.InvalidPhaseException: Phase Phase('YourPhase') was not registered for this pipeline.

This means that you are trying to use a phase that is not registered as a reference for another phase.This might happen for example in the Routing feature if you try to register a phase relation inside a node,but the phase referenced is defined in another ancestor Route node. Since route phases and interceptors are latermerged, it should work, but you need to register it in your Route node:

  1. route.addPhase(PhaseDefinedInAncestor)
  2. route.insertPhaseAfter(PhaseDefinedInAncestor, MyNodePhase)

I get a io.ktor.server.engine.BaseApplicationResponse$ResponseAlreadySentException: Response has already been sent

This means that you, or a feature or interceptor, have already called call.respond* functions and you are calling itagain.

How can I subscribe to Ktor events?

There is a page explaining the Ktor’s application-level event system.

I get a Exception in thread "main" com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'ktor' exception

This means that Ktor was not able to find the application.conf file. Re-check that it is in the resources folder,and that the resources folder is marked as such.You can consider to set-up a project using the project generator or the IntelliJ pluginto have a working project as base.

Can I use ktor on Android?

Ktor is known to work on Android 7 or greater (API 24). It will fail in lower versions like Android 5.

In unsupported versions it would fail with an exception similar to:

  1. E/AndroidRuntime: FATAL EXCEPTION: main Process: com.mypackage.example, PID: 4028 java.lang.NoClassDefFoundError:
  2. io.ktor.application.ApplicationEvents$subscribe$1 at io.ktor.application.ApplicationEvents.subscribe(ApplicationEvents.kt:18) at
  3. io.ktor.server.engine.BaseApplicationEngine.<init>(BaseApplicationEngine.kt:29) at
  4. io.ktor.server.engine.BaseApplicationEngine.<init>(BaseApplicationEngine.kt:15) at
  5. io.ktor.server.netty.NettyApplicationEngine.<init>(NettyApplicationEngine.kt:17) at io.ktor.server.netty.Netty.create(Embedded.kt:10) at
  6. io.ktor.server.netty.Netty.create(Embedded.kt:8) at io.ktor.server.engine.EmbeddedServerKt.embeddedServer(EmbeddedServer.kt:50) at
  7. io.ktor.server.engine.EmbeddedServerKt.embeddedServer(EmbeddedServer.kt:40) at
  8. io.ktor.server.engine.EmbeddedServerKt.embeddedServer$default(EmbeddedServer.kt:27)

For more informatio, check Issue #495 and StackOverflow question

CURL -I returns a 404 Not Found

CURL -I that is an alias of CURL —head that performs a HEAD request.By default Ktor doesn’t handle HEAD requests for GET handlers, so you might get something like:

  1. curl -I http://localhost:8080
  2. HTTP/1.1 404 Not Found
  3. Content-Length: 0

for:

  1. routing {
  2. get("/") { call.respondText("HELLO") }
  3. }

Ktor can automatically handle HEAD requests, but requires you to first install the AutoHeadResponse feature.

  1. install(AutoHeadResponse)

I get an infinite redirect when using the HttpsRedirect feature

The most probable cause is that your backend is behind a reverse-proxy or a load balancer, and that this intermediaryis making normal HTTP requests to your backend, thus the HttpsRedirect feature inside your Ktor backend believesthat it is a normal HTTP request and responds with the redirect.

Normally, reverse-proxies send some headers describing the original request (like it was HTTPS, or the original IP address),and there is a feature XForwardedHeaderSupportto parse those headers so the HttpsRedirect feature knows that the original request was HTTPS.