1

I want to know the size limit of data which can be fetched in case of HTTP/Webservice/RO.

Kishor Kumar
  • 543
  • 1
  • 12
  • 33

2 Answers2

2

Any file size limits are not flex specific, but instead relate to the protocols in question - which (AFAIK), there are none.

However, it's worth noting that if you send a particularly large packet size to the client, you will notice that the UI freezes while the packet is deserialized into memory within the client.

Marty Pitt
  • 28,822
  • 36
  • 122
  • 195
1

I haven't tested large responses, but there are limits with sending large requests. At least with RemoteObject, the entire object must be loaded into memory so loading 2gigs would get an OutOfMemoryError.

Jacob Eggers
  • 9,062
  • 2
  • 25
  • 43