Sends messages to a specific channel based on the filter criteria (which is a struct).
wsPublish(String channel, Object message); wsPublish(channel,message [,filterCriteria]);
→ returns void
Checking to see if the region is present in the cache
<cfscript>
if(isDefined('form.publish'))
wsPublish(#form.channel#, #form.message#);
</cfscript>
<cfform method='post'>
<cfselect name='channel'>
<option>
stocks
</option>
<option>
news
</option>
<option>
products
</option>
</cfselect>
Message:
<input id='message' name='message' type='text'>
<cfinput id='publish' name='publish' value='publish' type='submit'>
</cfform>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.