Does anyone has tried to setup CF/Lucee as websock...
# cfml-general
t
Does anyone has tried to setup CF/Lucee as websocket client (not server)?
b
You'd likely need a Java library to do this as there are no CFML functions for this.
I don't know what flavor of websockets you're using, but for example
stompj
is a Java lib that serves as a STOMP client over websockets
If you're looking to trigger arbitrary code on a CFML box that sends a result back, you could look into something like RabbitMQ's RPC model which works well in CFML using the rabbitsdk I wrote.