I just tried to hack this in the websocketChannel.js file where the url was created (line 18)
var lURL="ws://"+(_7e0)+":"+_cf_websocket_port+"/cfusion"+"/cfusion";
tried to do it
var lURL= (location.protocol === "https:" ? "wss" : "ws") + "://"+(_7e0)+":"+_cf_websocket_port+"/cfusion"+"/cfusion";
But alas, the wss: // connection will simply never connect. BS I tell you .. net BS !! The only problem is really in IE10, because it will not connect to the insecure websocket channel initiated from the secure page.
Giancarlo gomez
source share