Happenings and acts of geekery.
I like PhoneGap. Really. But I bashed my head on this for a while so if this saves you the headache, you're welcome!
The app I am working on uses the Camera API to capture an image and then submits it to a back-end service for inclusion in an online photo gallery. Pretty simple.
When you capture the image, you have two choices for how to handle the data:
The problem with DATA_URL is that the cameras on mobile devices are getting to be too darn good. That DATA_URL is a Base64 encoded string that can very quickly run you straight out of memory. Therefore, you are strongly encouraged to use FILE_URI instead which is simply a pointer to a file on the device file system.
How do you then get this file moved up to the server? Use the File API's FileTransfer object.
The key line here is options.chunkedMode = false;. From what I could tell by reading Ben's blog post , ColdFusion simply can't handle chunked form data. Two hours of searching and evaluating alternatives...and then I noticed this option.
So...lesson learned. Base64 will not only drag your app down but probably crash it as well. FileTransfer (sans chunks) is the way to go.
no problem with cross domain ?
it would be great help if you make a simple full demonstration including cold fusion code.
regards