• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

How to realize huge data transfer in Android?

 
Ranch Hand
Posts: 62
Flex Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Android Experts,

I have a business process flow managed using BPM invoked through an android platform. But since the human interaction modules can trigger a web service which demands huge data transfer, the solution is not found to be realistic (considering the huge data transfer bottleneck of web services). Is there any other recommended way to realize such a scenario where huge data transfer is needed in Android platform?

Thanks a lot for your valuable comments...

Warm Regards
Jisha Anand
 
Rancher
Posts: 43076
77
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How much is "huge"? Resource-constrained devices are not a good place to keep large amounts of data; could it be kept on the server instead of on the device?
 
Ranch Hand
Posts: 8944
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ulf Dittmer wrote:How much is "huge"? Resource-constrained devices are not a good place to keep large amounts of data; could it be kept on the server instead of on the device?



Ulf,
What storage size can Android support?
 
Jisha Anand
Ranch Hand
Posts: 62
Flex Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks a lot for your kind reply. As per the business requirement, the huge data must be confirmed by the user before going to the next step in the BPM. Hence data must be transferred to the device and make it viewable in the android platform. The data size would range from 5MB - 10MB...'m curious to know how to tackle similar cases in these resource constrained devices.

Ulf Dittmer wrote:How much is "huge"? Resource-constrained devices are not a good place to keep large amounts of data; could it be kept on the server instead of on the device?


 
Ulf Dittmer
Rancher
Posts: 43076
77
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How is a user going to "confirm" 5 MB worth of data on a mobile device? What kind of data are we talking about?
 
Jisha Anand
Ranch Hand
Posts: 62
Flex Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
that is the problem. we are doing a feasibility analysis to port an important process flow of our application to mobile device. But the bottleneck is that at one step user has to review a 5MB report (now it is in excel format, it could be converted to other formats also). This data could be streamlined to 2 or utmost 1.5 MB but not more. So can we conclude the application is not feasible to port to mobile devices?

Ulf Dittmer wrote:How is a user going to "confirm" 5 MB worth of data on a mobile device? What kind of data are we talking about?

 
Ulf Dittmer
Rancher
Posts: 43076
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That depends on what's in the report. 5 MB could mean 100.000 cells of data, which no one can reasonably check, not on a mobile device, and not elsewhere. It could also mean 10 cells and a hi-res images.

But you can easily test that yourself - have a user (not a developer) download the file to a typical device you would use, and have him carry out whatever the confirmation process entails.
 
ice is for people that are not already cool. Chill with this tiny ad:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic