The same issue which is explained in #4676.
I think the solution is to fix this
|
const URL_PROTOCOL = window.location.protocol.replace("http", "ws") + "//"; // todo: unused... https...? |
with this
const URL_PROTOCOL = window.location.protocol === "https:" ? "wss://" : "ws://";
The same issue which is explained in #4676.
I think the solution is to fix this
mojarra/impl/src/main/resources/META-INF/resources/jakarta.faces/faces-uncompressed.js
Line 2721 in 0ae701e
with this