問題タブ [ktor]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
2165 参照

ios - kotlin.native.concurrent.InvalidMutabilityException: 凍結の突然変異の試み when using ktor in Kotlin Multiplatform (iOS)

I am trying to build a simple Kotlin Multiplatform app that calls to the internet to fetch some Strings from the intern

I am trying to build a simple Kotlin Multiplatform app that calls to the internet to fetch some Strings from the internet with ktor. I took some functions from Kotlin conference app which I compiled and it works fine on both Android and iOS.

However, in my sample app, it only works on Android, but on iOS it returns

kotlin.native.concurrent.InvalidMutabilityException: mutation attempt of frozen <object>@c422ffe8

Here is the GitHub repository and below is my code:

--

--

--


How recursive function control flow change for static variable?

I am trying to learn some stuff about recursive function and I try to run this

I am expecting that it will give me an output like this as similar to any local variable called in a recursive function.

But compiler gives me an output like this

I can't understand why this kind of output comes. Can anyone explain?

0 投票する
0 に答える
483 参照

sockets - Ktor Secure Sockets (SSL/TLS) ウィンドウの例?

Raw Sockets の ktor ドキュメント、具体的にはセキュア ソケットに関連する部分 ( https://ktor.io/servers/raw-sockets.html )に従おうとしていました。

しかし、NativePRNGNonBlocking SecureRandom アルゴリズムは Windows では使用できないため、私の唯一のオプションはSHA1PRNG ( https://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html#SecureRandomImp )を使用することでした。

これは、リッスン ソケットに接続するために実行しているコードです。

残念ながら、常に同じエラーが表示されます:「チャンネルは閉鎖されました

未加工のソケットのみを保持して tls を削除すると、次のようになります。

すべてが期待どおりに機能します。

Windows で Ktor Secure Sockets を使用したことがある人はいますか? (残念ながら、Ktor のドキュメントにはまだ長い道のりがあります)。

ありがとう、J

0 投票する
3 に答える
2835 参照

ktor - Ktor でカスタム構成を使用するにはどうすればよいですか?

私は組み込みの構成サポートを掘り下げており、(Ktor のものと一緒に独自のものを展開するのではなく) それを使用したいと思っていますが、クリーンな方法でそれを行う方法を理解するのに苦労しています. 私はこれを持っていて、うまくいっていますが、本当に醜いので、もっと良い方法が必要だと感じています:

助けてくれてありがとう!