Does CF10 support secure websocket wss?
Asked Answered
P

4

6

Can someone using CF10 confirm if CF10 supports secure websocket wss://?

enter image description here

http://blog.kaazing.com/2012/02/28/html5-websocket-security-is-strong/

Panfish answered 9/6, 2012 at 0:35 Comment(0)
T
7

I checked with Hemant. The answer is no, it is NOT supported now, but it is under progress to be added.

Tunesmith answered 10/6, 2012 at 15:16 Comment(1)
Any idea where would it be added to? CF10.0.1? or CF11+?Panfish
S
2

On the basis of there being not a single mention of "secure websocket" or "wss" in the CF10 docs (according to Google), and in all the blogging Ray Camden has done on the topic there is not a single mention of it either, and indeed the only relevant match on all of Google for "cf10 wss" is back to this very question, I would say "no".

But that would be rather an odd implementation omission, I think.

Swearingen answered 9/6, 2012 at 7:16 Comment(0)
S
2

I just tried hacking this on the websocketChannel.js file where the URL is created (line 18)

var lURL="ws://"+(_7e0)+":"+_cf_websocket_port+"/cfusion"+"/cfusion";

tried to do this

var lURL= (location.protocol === "https:" ? "wss" : "ws") + "://"+(_7e0)+":"+_cf_websocket_port+"/cfusion"+"/cfusion";

But alas the wss:// connection would just never connect. BS I tell you .. pure BS!! The only issue really is with IE10 as it will not connect to an unsecured websocket channel initiated from a secure page.

Seineetmarne answered 3/7, 2013 at 17:1 Comment(1)
bugbase.adobe.com/index.cfm?event=bug&id=3434307 it's labeled Fixed, but I'm not sure when will this be available for us. CF11?Panfish
P
0

No it is not supported yet. However, it is being considered for ColdFusion Splendor.

https://twitter.com/rakshithn/status/352722362799624193

Panfish answered 4/7, 2013 at 17:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.