Re: GWT 2.9 upload file error

2021-08-05 Thread Oleg Ravun
I use gwtupload.client.MultiUploader . Do you set servlet path - setServletPath()? I don't call setStatusWidget. Thanks, Oleg On Thu, Aug 5, 2021 at 12:40 PM Yibin Li wrote: > import gwtupload.client.IFileInput.FileInputType; > import gwtupload.client.IUploadStatus.Status; > import gwtupload.

Re: GWT 2.9 upload file error

2021-08-05 Thread Yibin Li
I have made upload file working. We have custom statuswidget that is using IUploadStatus interface. This caused prblem in Web.xml uploadServlet *.gupld What I did is 1. DO not use *.gupld -- replaced by real servlet 2. Do not set status Widget -- > //commented out current

Re: GWT 2.9 upload file error

2021-08-05 Thread Yibin Li
import gwtupload.client.IFileInput.FileInputType; import gwtupload.client.IUploadStatus.Status; import gwtupload.client.IUploader; import gwtupload.client.IUploader.OnChangeUploaderHandler; import gwtupload.client.IUploader.OnFinishUploaderHandler; import gwtupload.client.MultiUploader; import gwtu

Re: Frequent Java runtime crashes when compiling GWT code

2021-08-05 Thread Juan Pablo Gardella
I had issues and solved after switching to old java 8 oracle version v1xx On Thu, Aug 5, 2021, 1:14 PM Michael Conrad wrote: > Can you try testing with adoptopenjdk? > > I've had issues with stock openjdk before with odd crashes that don't > happen with adoptopenjdk. > > On Thu, Aug 5, 2021 at 1

Re: Frequent Java runtime crashes when compiling GWT code

2021-08-05 Thread Michael Conrad
Can you try testing with adoptopenjdk? I've had issues with stock openjdk before with odd crashes that don't happen with adoptopenjdk. On Thu, Aug 5, 2021 at 11:28 AM mmo wrote: > We are seeing frequent Java runtime crashes (and I *really* mean often: > about 2 in 3 compilations crash) while bu

Frequent Java runtime crashes when compiling GWT code

2021-08-05 Thread mmo
We are seeing frequent Java runtime crashes (and I *really* mean often: about 2 in 3 compilations crash) while building our GWT-based application. I haven't been able to figure out, precisely *what* is triggering this (see the log-snippet below). It happens more or less right at the beginning of

Re: Upgrading GWT-based application - issues with JEP-238 (MultiRelease) jar files

2021-08-05 Thread mmo
Thanks for responding! Meanwhile I am deploying to a local Tomcat (which is the target server anyway, so this also spares us issues caused by differences of the two...). On Thursday, July 29, 2021 at 12:51:20 PM UTC+2 Jens wrote: > But how can I replace the Jetty embedded in the GWT Maven plugi

Re: GWT 2.9 upload file error

2021-08-05 Thread lofid...@gmail.com
What kind of "Uploader" component do you use? Thanks, Lofi yibi...@gmail.com schrieb am Montag, 2. August 2021 um 09:39:30 UTC+2: > I upgrade a project from GWT 2.5.1+Java 8 to GWT 2.9 +Java 11 > > I got (TYpeError): Cannot read property 'Xe' of null when I > > IUploader currentUploader = new Up