05-03-2021 03:28 PM
Hello,
I am getting a zip file from a rest request. I want to rename files (files we get after we extracting the zip). I don’t want to write the zip file in sldb and then read it using zipfile read. I want to directly use file coming from upstream in zipfile read.
Is it possible to achieve?
Thanks for your time,
Smit
05-04-2021 03:03 PM
zip file read can’t read from https REST endpoint but you can give this a try.
05-08-2021 02:27 PM
Hello,
After REST POST, I’m using multipart reader and after that I have access to content-type, content-id and content-disposition. I can’t directly use Document to Binary after REST GET.
Thanks