This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
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...
Hello,
While using rest post snap, I have error view enabled. Snap runs without any error, but still error view gets executed. Error view updates a file in JSON format.
My goal is to update the file only when I get error.
Thanks for you time,
Smit
Hello,
My goal is to download an attachment from a REST POSAT response. The response header content-type value is multipart/mixed and a boundary.
I used multipart reader to extract the file. With the help of regex I have set the Content-Type property...
Hello,
Structure of pipeline:
REST POST → mapper outputs binary view → multipart reader
REST POST’ response has content-type:
“content-type”:[{
“value”:
“multipart/mixed”
“value_1”:
" \tboundary=“----=text for boundary”"
}]
response also has a zip at...
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
We have a similar situation, we are making REST POST request and getting back zip in response. I want to rename files (files which we get after extracting zip file). Is there a way, we can perform this task without writing the file to the temporary l...