User Guide
CFEvent class 985
getCFCMethod
Description
Gets the name of the CFC method that processes the message.
Category
Event Gateway Development
Syntax
String getCFCMethod()
See also
getCFCPath
, getCFCTimeout, setCFCMethod, “CFML CFEvent structure” on page 1004,
“CFEvent class” in Chapter 45, “Creating Custom Event Gateways” in ColdFusion MX Developer’s
Guide
Returns
For incoming messages, the name of the method that gateway services will call in the listener
CFC, as set by the
setCFCMethod method. If setCFCMethod has not been called, returns null,
and not
onIncomingMessge, which ColdFusion gateway services uses by default. Outgoing
messages that are returned by a CFC in response to an incoming message also have the CFC
method name in this field if the gateway set the field on the incoming message.
Usage
Most event gateways do not need to use this method. This method could be useful if a gateway
sends messages to multiple CFC Methods and must determine which method is responding.