Hello Guys,
I hope someone is still helping out. I have an old MachII app which is using the deprecated resultKey such as:
...
<notify listener="awesomeListener" method="getTheAwesome" resultKey="request.Awesome"/>
<event-arg name="Awesome" variable="request.Awesome"/>
...
The method getTheAwesome returns an Object. I would like to do this in one step using resultArg instead, but when I do the following, I get an empty string when I cfdump event.getArg('Awesome')
...
<notify listener="awesomeListener" method="getTheAwesome" resultArg="Awesome"/>
...
I have a work-around using event-arg, but I will one day like to update this app, and I will need to understand this issue before I tackle that.
NOTE: All the other notifies on the configuration use resultKey. We are am using machii 1.8.1.
Thanks in advance,
-Miguel