In a Mate EventHandler tag I have an RemoteObjectInvoker tag.
<RemoteObjectInvoker
destination="zend"
source="AccountService"
method="createAccount"
arguments="{event.fname}"
showBusyCursor="true"
debug="true">
.../>
The server is PHP using the Zend Framework. I am using Zend_Amf for the remote object calls.
The problem I've having is with the arguments property of the RemoteObjectInvoker tag. The online documentation says the arguments property expects an array. But in some of the examples is shows an object can also be used. It does not matter what I use (object, array) they all resolve to a value of 1 on the server. I turned on debugging in Mate, which says the class or array or string is being passed.
Any ideas on how to troubleshoot this problem?