I am working on Nokia Asha devices. My problem is that i am getting large data xml from server as a response of my request which could be up to 5 Mb or above. What is the best approach for storing this xml data and images.
I am working on Nokia Asha devices. My problem is that i am getting large data xml from server as a response of my request which could be up to 5 Mb or above. What is the best approach for storing this xml data and images.
hi grift.
Thanks for the reply.
I am talking about java app. The main problem is that data is too large and getting Url for images in Xml too, i have to store that data and images for further process. i want to know that Asha series device are capable of storing such a large data in the Rms or not . What is the preferable way to store large data in such devices.
RMS size limit is said to be 512 kilobytes in current Series 40/Asha devices. However you can multiple RMS-s (up to 2000 some says), so splitting the data may be an option.
Note that the heap size for your code is also limited (4-5 megabytes, depending on the device, you can find device specifications in "Devices" above), so parsing a 5 megabytes XML will require some streaming approach (SAX-like), if possible at all.