当前位置: 代码迷 >> Web前端 >> [RPC Fault faultString="Cannot create class of type 'ArrayCollection'."
  详细解决方案

[RPC Fault faultString="Cannot create class of type 'ArrayCollection'."

热度:1098   发布时间:2012-11-22 00:16:41.0
[RPC Fault faultString="Cannot create class of type 'ArrayCollection'."
[RPC Fault faultString="Cannot create class of type 'ArrayCollection'." faultCode="Client.Message.Encoding" faultDetail="Type 'ArrayCollection' not found."]
at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:220]
at mx.rpc::Responder/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responder.as:53]
at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:103]
at NetConnectionMessageResponder/statusHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\messaging\channels\NetConnectionChannel.as:574]
at mx.messaging::MessageResponder/status()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\messaging\MessageResponder.as:222]


这个问题扎眼一看是 VO映射的问题,但是反复查看,没有什么地方写错

后来上网查了下,想起来是在之前写过这样的句子来手动的注册了远程映射类的位置
registerClassAlias("ArrayCollection",ArrayCollection);

写这个是因为在Loader里面使用并调用后台service的时候会出现另一个错误
在我之前写的日记里
http://liyunpeng.iteye.com/blog/1488478
需要先注册一下远程类,只不过这里注册的package写错了
registerClassAlias("mx.collections.ArrayCollection",ArrayCollection);
这里的object同样适用其他的自定义Object 或者说VO
  相关解决方案