Hi, >Does anyone knows how I can access the raw data of an AMF response ? (I'm >using the mx.rpc.remoting.RemoteObject class to call the services)
If I remember it correctly, an alternative is to implement a custom error
handler in order to throw an exception, something like this:
$stmt = $dbh->prepare('bogus sql');
if (!$stmt) {
throw new Exception($dbh->errorInfo());
}
Maybe this helps,
Olaf
--
Sent from: http://apache-flex-users.2333346.n4.nabble.com/
