Hey so i have been trying to create a custom file object in a temporary file inside a service action, but its not letting me select the temp file
is there a specific reason why I can not access it?
Hey so i have been trying to create a custom file object in a temporary file inside a service action, but its not letting me select the temp file
Hi, this is by design.
Making files in memory in services is not allowed at runtime, so it is blocked in Create.
One option can be to add a Database connected source with Cardinality One and sorted on Created Date to your service.
That will allow you to upload and modify the file object in your service.
Let me know if you have any more questions.
// Erik
In my case, I will be migrating files from the app farm database to SharePoint. I have to create slices of the main file that are more than 4 MB and send the chunks using the API. In this case, I am not allowed to do it, right?
Unfortunately, if you need to operate on the Blob directly, this will have to be done client-side.