为BlueDragon(CFML)消息插件实现一个简单的监听器

时间:2014-05-22 18:54:48

标签: jms cfml bluedragon

我正在尝试为BlueDragon提供的CFML消息插件制作一个hello world示例:

http://openbd.org/manual/?/plugin_message

我不能让我的听众在其说的部分工作: 使用CFC完成从主题接收消息,并定义了onMessage(消息,标头)方法。

当我在服务器上检查我的日志(plugin-message.log)时:

22/05/14 18:39.45: send( vm://localhost@GOOG, size=9 )
22/05/14 18:39.45: onMessage.error@LR.RTQ.listener; Topic=GOOG; E=Error at line 1, column 1

我的listener.cfc文件似乎有问题:

<cfcomponent>

<cffunction name="onMessage" access="remote" >

<cfargument name="message" type="string" required="true"/>
<cfargument name="header" type="string" required="true"/>



<cfstoredproc procedure="insert_message" datasource="AJDB">


<cfprocparam
    cfsqltype="cf_sql_varchar"
    value="jms">

<cfprocparam
    cfsqltype="cf_sql_varchar"
    value="alanserver">

<cfprocparam
    cfsqltype="cf_sql_varchar"
    value="#message# on #header#">


</cfstoredproc>


</cffunction>


</cfcomponent>

有人能指出我使onMessage方法有效的正确方向吗?

1 个答案:

答案 0 :(得分:0)

对我来说,我的日志不会给出任何错误。他们会这样说:

17/12/14 10:30.14:onMessage@mmm.messagebroker.email;主题=话题;时间= 1毫秒

错误日志中没有任何内容表示处理邮件时出错。

但无论我在做什么都没有发生。我就是这样做的:

   public anyfunction onMessage(Message,Header) output="true" {
     FileWrite( "/Users/nitish/Documents/Nitish/Official/Tomcat/apache-tomcat-8.0.14/webapps/obd/mmm/messagebroker/files/test.txt", "ha" ,"UTF-8");
     return;
   }