I want to trigger a background process that will process a zip file once imported by a file upload control.
Inside this process I will trigger a server action that will actually handle the zip file management.
This server action needs to receive binary data, but I don't see Binary data type in process input parameters:
Ideally, I don't want to store the zip file imported, just process it.
How can I achieve this?
The reason is I want to be able to navigate back and forth to this page and have a live status of the unzipping process, without this process being stopped.
Hi Great Projects,
A suggestion is to have in that process as input the Id of the entity which stores the binary.
In process you could have than an automatic activity which you can handle that zip file
Launch this process after uploading the file providing the Id.
Hope that it helps you
You can convert binary to base64 and pass it to the process and inside the process convert this base64 to binary by doing this you can get binary value in your process
Thanks
Arun