Presented By Giancarlo Gomez
In this meeting we reviewed some new features of Adobe ColdFusion 2016, how easy it is to implement and use WebSockets on the Adobe ColdFusion Server and how to use with Socket.io instead.
There are 4 directories that were used in the demo and they are named based on the URLs I used during the demo. If you want to follow the examples without having to change much I suggest creating records in your local hosts file that point the domain names to the server you are using for testing and create a site for each folder.
- Realtime With Websockets ( realtime.local.com in presentation )
The codebase for this demo can be found Realtime With Websockets Repo. - AdvancedSocket
The JavaScript Utility to help with connectivity issues with ColdFusion WebSockets @ AdvancedSocket Repo. - co2016.local.com
This folder contains several subfolders that test some of the new code updates of ACF2016, only run if this is installed on an ACF 2016 server. - socket.io ( node.js required )
This is the code for the socket.io server that will run on port 8080. Remember to do annpm install
after downloading and then runnode server.js
to start. - socketio.local.com
The example site using the socket.io server to connect, send and receive messages both from the client and the server (publish.cfm).