I`m trying to find out how to send images to my back-end server using Worklight adapters.
I know that I can send them through Worklight adapters using Base64 encoding but th
At this time, Worklight adapters do not support sending data in binary form.
This means that currently your only option is the one you do not like, which is to base64 encode the image file and store the resulting string in the database and when you need to use it, to base64 decode it.