The default AMFPHP patterns for including classes defined in your AMF requests do not work for POG classes. The two default patterns that are check for class including by the AMF deserializer are:
// $mappedClass = SomeObject
$mappedClass . "php" // SomeObject.php
// or
$mappedClass . ".class.php" //SomeObject.class.php
For POG classes the pattern is "class.someobject.php", regardless of [...]






