Upload Issue
#1378
Replies: 2 comments
-
Please provide the steps to reproduce. |
Beta Was this translation helpful? Give feedback.
0 replies
-
The FileController upload method expects the posted file to be split into chunks with a specific naming convention which are then reassembled on the server. If you want to see how this works under the covers look in the interop.js file and uploadFiles() method. You will see that breaks file into "parts". So it you want to test this using Swagger you will need to emulate the behavior of uploadFiles() and use the same naming convention for your file ( ie. use a file extension with .part_001_001 ). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to play around with upload file using FileManager but got failed so I was trying to test it with Swagger and this is what I got
So I put a break point in MergeFile() and figured out that the ".part_" somehow not work so application crashes at that place.
Any idea?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions