I need to upload a file from a full javascript frontend.
I have a SOAP webservice that upload a file to a repository. The file is encoded in base64 inside the SOAP body.
Can I use the APIC to create a file upload REST endpoint that read the stream, encode in base64, and call the SOAP webservice on the backend?
Is it correct/safe/robust to do this on the integration layer, or I should do it on the backend?