错误 #2084 - 参数的 AMF 编码不能超过 40K
在我的应用程序中,我使用 localConnection
对象通过 Flex 3 和 Flex 4 swf 进行通信。但是当参数(ArrayCollection
)的大小超过一定限制时,我收到以下异常:-
错误#2044:未处理的 AsyncErrorEvent:。 text=错误#2095:flash.net.LocalConnection 无法调用回调readyToUpdate。 error=ArgumentError: 错误 #2084: 参数的 AMF 编码不能超过 40K。
任何输入都将受到高度赞赏。
In my application I am using localConnection
object for communication b/w Flex 3 and Flex 4 swfs. But when the size of the arguments (ArrayCollection
) exceeds certain limit , I am getting following exception:-
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback readyToUpdate. error=ArgumentError: Error #2084: The AMF encoding of the arguments cannot exceed 40K.
Any inputs on same will be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一个相关的帖子。最后提到的是检查以确保数组的长度不为 0。不确定这如何转化为超过 40K,但需要注意一下。如果数组中有数据,请尝试计算出您要发送多少数据......
http://forums.adobe.com/thread/243519
There's a related post here. The last thing mentioned was to check to make sure your array doesn't have a length of 0. Not sure how this translates into exceeding 40K but something to look at. Try to figure out how much data you are trying to send if there is data in the array...
http://forums.adobe.com/thread/243519
老问题,但我刚刚解决了这个问题
old question, but I just solved this by