I'm playing around with the Coldfusion Websockets and have been trying to follow this tutorial. However, I can't seem to get the channel listener part working for: "HelloWorld – Version 2: Using a channel listener".
I have the code in the application correct, but I think it can't find the cfclistener.
this.wschannels = [ {name="world", cfclistener="myChannelListener" }];
I have the cfc made with the beforePublish to append the time but it's not working. I'm using CFWheels and just put the channel listener cfc in the controllers folder. I tried the above code with different variations such as:
controllers/myChannelListener/controllers/myChannelListenercontrollers.myChannelListener.controllers.myChannelListener
.. even trying the path from the C drive:
C:/Projects/myproject/controllers/myChannelListener
but they all do not work. I'm pretty sure it's a path problem. Does anyone know how to specify the cfclistener path?
This is most likely due to the fact that CFWheels URL rewriting does not allow you to bind directly to a CFC.
Try putting the CFC in the
miscellaneousfolder and see if it works from there. If so, you can either keep it there or create a subfolder of your choosing and make sure to exclude it from URL rewriting.Note that if this works and is the route that you take, you will be completely outside of the CFWheels framework within your
myChannelListenerCFC.