Upload file from external URL

0
An external system provides a webservice that amongst others can expose certain files and images. For this matter their XML message contains the URL of a specific file or image. How can we upload such a fille or image to our Mendix application?
asked
2 answers
3

Community commons: storeURLToFileDocument

answered
0

If the webservice provides a specific image/file url, you need a custom action to retrieve this binary with a java-action. There is no way to retrieve a binary from a url within a microflow with an out-of-the box activity. So you need to get it yourself with java I think.

answered