Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Ivano Luberti
Thank you Vjeran Il 19/06/2018 18:58, Vjeran Marcinko ha scritto: > Ah, big SORRY for version typo... > > I meant that I used 5.3.7 (not 4.3.7), and I wanted to stay there, but > there was some java-8 related issue during boot, and I had to upgrade > to 5.3.8 (release notes says some java -8

Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Vjeran Marcinko
No, I checked. The exception isn't raised, but this parsing returns empty list: return createFileUpload().parseRequest(request); Which is basically Commons FileUpload called all the way down. I checked the HTTP request being proper multipart in Chrome Inspector, and fileupload code recognizes

Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Dmitry Gusev
Hi, judging by the code you submitted, it should only return an empty list in case of FileUploadException. Did you try to attach with debugger and checking the exception object? On Tue, Jun 19, 2018 at 7:28 PM, Vjeran Marcinko < vjeran.marci...@email.t-com.hr> wrote: > Hi, > > I am upgrading m

Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Thiago H. de Paula Figueiredo
You could try updating commons-file-upload to the latest version while keeping the rest unchanged. Anyway, I find it weird that just upgrading to Java 8 would cause that issue. On Tue, Jun 19, 2018 at 2:06 PM Vjeran Marcinko < vjeran.marci...@email.t-com.hr> wrote: > Ah, big SORRY for version

Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Vjeran Marcinko
Ah, big SORRY for version typo... I meant that I used 5.3.7 (not 4.3.7), and I wanted to stay there, but there was some java-8 related issue during boot, and I had to upgrade to 5.3.8 (release notes says some java -8 issue was fixed there). I didn't want to upgrade , at least not for now

Re: No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Ivano Luberti
Side questiono on this message: Tapestry 4.3.7 is not compatible with Java 8 ? Il 19/06/2018 18:28, Vjeran Marcinko ha scritto: >  Hi, > > I am upgrading my old Tapestry 4.3.7 app (java-7, standalone > Tomcat...) to newer tech stack (java 8, Spring Boot with embeddable > Tomcat deployed as single

No uploaded file when upgrading to new Tapestry version (Spring Boot jar, embedded Tomcat...)

2018-06-19 Thread Vjeran Marcinko
 Hi, I am upgrading my old Tapestry 4.3.7 app (java-7, standalone Tomcat...) to newer tech stack (java 8, Spring Boot with embeddable Tomcat deployed as single jar...). I wan't to leave tapestry untouched as much as possible, so I just upgraded from 4.3.7 to 4.3.8 because of Java-8 requiremen