Tom Desair

Results 8 comments of Tom Desair

Hi @softboy99, The tus protocol itself makes abstraction of files: _"the specification does not have the principle of a disk-based file, allowing you to upload arbitrary data using tus"_ (https://tus.io/protocols/resumable-upload.html#how-can-i-get-the-file-name-or-file-type-for-an-upload)....

Hi @softboy99, You need to provide any metadata about the upload (like mime-type, filename, ...) in the `Upload-Metadata` HTTP header. Make sure to read this: https://tus.io/protocols/resumable-upload.html#upload-metadata For example if you...

You can also take a look at this example from another developer: - https://github.com/ralscha/blog2019/blob/51374dd/uploadtus/client/src/app/home/home.page.ts#L83 - https://github.com/ralscha/blog2019/blob/51374dd/uploadtus/server/src/main/java/ch/rasc/upload/UploadController.java#L66

Hi, The library assumes that the upload is part of some web form. This means that `FileUploadController` will indeed only see "in progress" uploads as it will process the upload...

You can also take a look at this example: https://github.com/ralscha/blog2019/blob/51374dd/uploadtus/server/src/main/java/ch/rasc/upload/UploadController.java#L50 This developer seems to be doing something similar as you without the need for a separate form controller.

Thank you for the reply and helping out. I'm closing this issue as this is already mentioned in the README: > * `withChunkedTransferDecoding`: [...] By default, chunked decoding via this...

Travis is complaining that > The JAVA_HOME environment variable is not defined correctly It seems like a Travis configuration problem.

I've created a pull-request for this here https://github.com/trautonen/coveralls-maven-plugin/pull/123