|
I can confirm that Juan's simple fix solves the same issue for me. I can also confirm that JMT's solution fixes the problem. (In version 1.7.4, the correct line would be 95 The TypeLoader.php hasn't had any changes from 1.7.7 to 1.8.0, so I suggest patching the file with JMT's solution. The SVN revision 15454 is also broken and the same fix addresses the problem. Although it is not changed the way you have suggested the changes in the incubator should resolve this issue both ways. By default all class mapping to and from php defaults to the class name. Please check out zend_amf_server and Zend_amf_parse_typeloader from the incubator and let me know if it does not resolve your feature request. I'll add your suggestion if it does not do the trick! Replacing the Zend/Amf-directory with the incubator's version, I got the following error: HTTP/1.1 200 OK <br /> I had exactly the same problem, and I can comfirm that JMT's solution fixes it. |
||||||||||||||||||||||||||||||||||||
Hi, I currently solve this problem modifing Zend/Amf/Parse/TypeLoader.php (1.7.7) on line 105 replacing "return false;" by "return $className;". I'm not sure if this patch is right, but I'll be trying it for a while. Probably, this will cause unexpected behavior.
In my AS3 class, I put "[RemoteClass(alias="My_Mapped_Vo")]" and it works fine without setClassMap.
What do you think?
JMT