Hi again,
how can I manage to upload images (e.g. JPG or PNG) to a server?
f=Import["image.jpg","JPEG"]
URLExecute["url",
"Method" -> "PUT", "BodyData" -> f, Username->"...", Password->"..."]
does not work:
General::erropts: The value XXX specified for the option BodyData is invalid.
The uplaod with cURL is possible (webdav is installed)
Thanks!
Gordon