Hi all,
I'm hoping you guys can sort me out...
I'm trying to pass a value object to a service using amfphp but the object
isn't being mapped... passing strings works fine but objects are another
story...
here's my method table:
"someFunction" => array(
"description" => "do something'",
"access" => "remote",
"arguments" => array("someObj" => array("type" =>
"vo.com.valueObjects.SomeClass", "required" => true))
)
and here's my function...
function someFunction($someObj)
{
require_once ('vo/com/valueObjects/SomeClass.php');
$a = $this->dbClass->DBInsertSomething($someObj);
return $a;
}
the method is being called because it is inserting a bunch of nothing into
the database...the object has no values it seems...
can anyone steer me in the right direction
thanks
percy