Hi there, I have a a JS app and JVM app in my proj...
# multiplatform
d
Hi there, I have a a JS app and JVM app in my project. In my local development environment, I'm trying to establish a websocket client connection from my JS app running on http://localhost:8080 to my JVM KTor app running on https://localhost:8081. The ktor websocket client, however, seems to use the secure or non-secure property of the website connect when making the client websocket connection (ie, it seems that because my webapp is accessed via http, the server side will also be accessed via http and then upgraded to ws://). Is there a way to force a secure websocket connection (wss://) from a client webapp accessed via http?