Whatever message this page gives is out now! Go check it out!
onIncomingMessage(CFEvent) |
| Field | Description |
gatewayType | Gateway type, either XMPP or SAMETIME. |
gatewayID | The ID of the Gateway instance as configured in ColdFusion Administrator. |
originatorID | The IM ID of the message originator. |
cfcMethod | This CFC method; by default, onIncomingMessage. |
data.MESSAGE | The message that was received. |
data.SENDER | The sender's ID; identical to the originatorID |
data.RECIPIENT | The recipient's ID, as specified in the gateway's configuration file |
data.TIMESTAMP | The date and time when the message was sent |
| Field | Description |
command | Normally omitted. You can also specify submit. |
buddyID | ID to which to send the message. Normally, the value of the input parameter's Data.SENDER field. |
message | The message contents. |
<cffunction name="onIncomingMessage"> <cfargument name="CFEvent" type="struct" required="YES"> <cfset input_mesg = CFEvent.data.MESSAGE> <cfset retValue = structNew()> <cfset retValue.command = "submit"> <cfset retValue.buddyID = CFEvent.originatorID> <cfset retValue.message = "Message Received:" & input_mesg> <cfreturn retValue> </cffunction> |