DORSETRIGS
Home

ktor (36 post)


posts by category not found!

Ktor Exposed SELECT Type mismatch

Ktor Exposed Type mismatch Error in SELECT Queries Demystified The Problem When using Ktor Exposed you might encounter a Type mismatch error during SELECT queri

2 min read 06-10-2024 42
Ktor Exposed SELECT Type mismatch
Ktor Exposed SELECT Type mismatch

How to use ktor logging in kotlin multiplatform Moblie

Unleashing the Power of Ktor Logging in Kotlin Multiplatform Mobile Development Kotlin Multiplatform Mobile KMM offers a powerful way to share code between Andr

2 min read 05-10-2024 46
How to use ktor logging in kotlin multiplatform Moblie
How to use ktor logging in kotlin multiplatform Moblie

Kotlin Multiplatform Mobile (KMM) WebSocket code connecting twice on iOS

The Double Connection Dilemma Resolving Kotlin Multiplatform Mobile Web Socket Issues on i OS Introduction Kotlin Multiplatform Mobile KMM offers a powerful way

2 min read 05-10-2024 48
Kotlin Multiplatform Mobile (KMM) WebSocket code connecting twice on iOS
Kotlin Multiplatform Mobile (KMM) WebSocket code connecting twice on iOS

Ktor-Exposed database migration

Securing Your Ktor Application Addressing Database Migration Risks Developing a robust Ktor application often involves interacting with databases While Ktor pro

2 min read 04-10-2024 46
Ktor-Exposed database migration
Ktor-Exposed database migration

Ktor Retry failed request manually is not working

Ktor Retrying Failed Requests Manually A Practical Guide The Problem You re using Ktor for your API calls and you want to retry failed requests for greater resi

2 min read 04-10-2024 44
Ktor Retry failed request manually is not working
Ktor Retry failed request manually is not working

Handling errors and exceptions for API responses

Handling Errors and Exceptions for API Responses A Comprehensive Guide When developing applications that interact with APIs one of the key challenges developers

3 min read 30-09-2024 47
Handling errors and exceptions for API responses
Handling errors and exceptions for API responses

Ktor Dependency Issue in Kotlin Multiplatform Project for Browser Target

Ktor Dependency Issue in Kotlin Multiplatform Project for Browser Target Kotlin Multiplatform projects allow developers to share code across different platforms

2 min read 23-09-2024 82
Ktor Dependency Issue in Kotlin Multiplatform Project for Browser Target
Ktor Dependency Issue in Kotlin Multiplatform Project for Browser Target

Sending identical HTTP POST request succeeds from reqbin.com but fails from kotlin mobile app

Understanding HTTP POST Request Discrepancies Why It Works on Req Bin but Fails in Your Kotlin Mobile App When working on mobile applications developers often e

3 min read 22-09-2024 74
Sending identical HTTP POST request succeeds from reqbin.com but fails from kotlin mobile app
Sending identical HTTP POST request succeeds from reqbin.com but fails from kotlin mobile app

The token is sent incorrectly in Ktor Kotlin multiplatform

Resolving Token Sending Issues in Ktor Kotlin Multiplatform In the world of application development particularly when working with Ktor in Kotlin Multiplatform

2 min read 22-09-2024 70
The token is sent incorrectly in Ktor Kotlin multiplatform
The token is sent incorrectly in Ktor Kotlin multiplatform

Firebase Analytics crash with refuse connection, how to fix it?

Fixing Firebase Analytics Crash Due to Refused Connection Firebase Analytics is a powerful tool for tracking user interactions and improving your application Ho

2 min read 19-09-2024 40
Firebase Analytics crash with refuse connection, how to fix it?
Firebase Analytics crash with refuse connection, how to fix it?

ktor upload file based on curl example

Uploading Files in Ktor Based on a c URL Example Uploading files is a common functionality required in many applications and using Ktor for this purpose makes i

2 min read 18-09-2024 44
ktor upload file based on curl example
ktor upload file based on curl example

how to implement an embedded proxy in java or kotlin

How to Implement an Embedded Proxy in Java or Kotlin In todays world of software development building robust applications often requires networking capabilities

4 min read 14-09-2024 47
how to implement an embedded proxy in java or kotlin
how to implement an embedded proxy in java or kotlin

rename column name in the Exposed db in ktor

How to Rename a Column in Exposed DB using Ktor When working with databases in Kotlin especially with Ktor the Exposed framework provides a clean and idiomatic

3 min read 14-09-2024 45
rename column name in the Exposed db in ktor
rename column name in the Exposed db in ktor

OpenTelemetry agent logging WARN message for (Instrument db.client.connections.max has recorded multiple values for the same attributes)

Understanding Open Telemetry Agent Instrument db client connections max has recorded multiple values for the same attributes Warning Open Telemetry is a powerfu

2 min read 13-09-2024 52
OpenTelemetry agent logging WARN message for (Instrument db.client.connections.max has recorded multiple values for the same attributes)
OpenTelemetry agent logging WARN message for (Instrument db.client.connections.max has recorded multiple values for the same attributes)

I keep getting this error when trying to include a plugin in ktor manually: Unresolved reference: statuspages

Ktor Plugin Integration Troubles Unresolved Reference statuspages Are you facing the Unresolved reference statuspages error while trying to manually incorporate

2 min read 13-09-2024 49
I keep getting this error when trying to include a plugin in ktor manually: Unresolved reference: statuspages
I keep getting this error when trying to include a plugin in ktor manually: Unresolved reference: statuspages

How to replace Koin service injection in a Ktor route test by a mocked service

Mocking Ktor Routes with Koin A Practical Guide When testing Ktor routes that rely on Koin for dependency injection you often need to mock the injected services

3 min read 05-09-2024 60
How to replace Koin service injection in a Ktor route test by a mocked service
How to replace Koin service injection in a Ktor route test by a mocked service

Serializer for class '...' is not found. Mark the class as @Serializable or provide the serializer explicitly

Kotlin Serialization Error Serializer for class is not found This article delves into a common Kotlin serialization issue Serializer for class is not found Mark

3 min read 04-09-2024 46
Serializer for class '...' is not found. Mark the class as @Serializable or provide the serializer explicitly
Serializer for class '...' is not found. Mark the class as @Serializable or provide the serializer explicitly

TLS sessions are not supported on Native platform

Troubleshooting TLS sessions are not supported on Native platform in KMM KMP This article will explore a common issue encountered when using KMM Kotlin Multipla

2 min read 03-09-2024 46
TLS sessions are not supported on Native platform
TLS sessions are not supported on Native platform

How to verify the Koin dependency graph using the "verify" function?

Verifying Your Koin Dependency Graph A Practical Guide with Examples Koins dependency injection DI framework simplifies your applications architecture but it ca

3 min read 02-09-2024 50
How to verify the Koin dependency graph using the "verify" function?
How to verify the Koin dependency graph using the "verify" function?

502 Errors via Google Cloud-Run When Request Returns >64KiB JSON, Compressed?

Decoding the 502 Error Why Your Large JSON Responses Fail in Google Cloud Run Many developers have encountered the frustrating 502 error when serving large JSON

2 min read 02-09-2024 53
502 Errors via Google Cloud-Run When Request Returns >64KiB JSON, Compressed?
502 Errors via Google Cloud-Run When Request Returns >64KiB JSON, Compressed?

Ktor: launch long-running task then immediately send HTTP response

Launching Long Running Tasks in Ktor Without Blocking A Guide In web development its common to encounter situations where you need to perform long running tasks

4 min read 01-09-2024 48
Ktor: launch long-running task then immediately send HTTP response
Ktor: launch long-running task then immediately send HTTP response

Ktor FormItem.value is not filtering out boundary element under high load

Ktor Form Item value Boundary Element Issues Under Load Ktor a popular web framework for Kotlin provides a powerful set of tools for handling various requests i

2 min read 01-09-2024 48
Ktor FormItem.value is not filtering out boundary element under high load
Ktor FormItem.value is not filtering out boundary element under high load

Error in Launching Ktor application with configuration server parameters in Code

Troubleshooting Bind Exception Address already in use in Ktor Applications This article will guide you through understanding and resolving the common Bind Excep

2 min read 31-08-2024 49
Error in Launching Ktor application with configuration server parameters in Code
Error in Launching Ktor application with configuration server parameters in Code

Replacing Koin declarations for Ktor Applications

Replacing Koin Declarations for Ktor Applications A Practical Guide Testing your Ktor application with Koin can be tricky especially when you need to swap out r

3 min read 31-08-2024 51
Replacing Koin declarations for Ktor Applications
Replacing Koin declarations for Ktor Applications

Authorization in graphql-kotlin-ktor-server with directive and datafetcher

Securing Your Graph QL API with Kotlin A Deep Dive into Directives and Data Fetchers In the world of Graph QL APIs authorization is crucial for protecting sensi

2 min read 30-08-2024 38
Authorization in graphql-kotlin-ktor-server with directive and datafetcher
Authorization in graphql-kotlin-ktor-server with directive and datafetcher