Monday, November 21, 2022

Re: Convert Existing GWT Backend to SPRING BOOT

Are you using gwt-RPC ?
Yes! we are using GWT-RPC & currently having a single WAR of near about 500mb, having CLIENT-SHARED-SERVER in a same project.
You can still have everything in a master parent project that builds the final WAR with all the client JS and SERVER classes in the same war.

You'll need to switch to JSON for data transport.
Is there any drawback of switching to JSON in GWT, such as impact on performance etc.
You lose easy polymorphism for models, they will require an extra set of annotations at the very least if you have polymorphism as part of your DTO setup.

You'll need to use something like DominoKit REST.
We found one RestyGWT, but not sure about its final impact as we haven't applied it yet. any suggestions...
RestyGWT is effectively defunct. Stick with a modern GWT3 compatible approach such as DominoKit.


It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.
We cannot get why keeping SHARED CODE as a separate project is best. We are not having any library of GWT on server side. So except MODELS, what are the other stuffs we can have in SHARED CODE PROJECT.  
In this case SHARED CODE is really just the MODELS and INTERFACES and possible the REST Interface.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least
This is where we are stuck & looking for the solution with a minimum change and should be stable but unable to figure out yet.
I don't think you can accomplish this with a large project with minimum of change unless the client API calls are fully abstracted away (or can be) so that code could be replaced with a different class.

On Monday, November 21, 2022 at 7:37:33 PM UTC+5:30 Michael Joyner wrote:
There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.


On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/1790c907-ce31-4d97-a5b9-1915fef68865n%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT


Sorry we cannot get you. We will face data data transport problem in this too. 

On Monday, November 21, 2022 at 8:05:41 PM UTC+5:30 t.br...@gmail.com wrote:
Can't you use your GWT-RPC servlets inside Spring Boot? (and only change them so you can have Spring inject dependencies into them so you can effectively rewrite the entire backend without touching the frontend at all)

On Monday, November 21, 2022 at 3:07:33 PM UTC+1 Michael Joyner wrote:
There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.


On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/dc044381-9d97-4b7e-ad26-35148816adf3n%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT

Are you using gwt-RPC ?
Yes! we are using GWT-RPC & currently having a single WAR of near about 500mb, having CLIENT-SHARED-SERVER in a same project.

You'll need to switch to JSON for data transport.
Is there any drawback of switching to JSON in GWT, such as impact on performance etc.

You'll need to use something like DominoKit REST.
We found one RestyGWT, but not sure about its final impact as we haven't applied it yet. any suggestions...

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.
We cannot get why keeping SHARED CODE as a separate project is best. We are not having any library of GWT on server side. So except MODELS, what are the other stuffs we can have in SHARED CODE PROJECT.   

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least
This is where we are stuck & looking for the solution with a minimum change and should be stable but unable to figure out yet. 

On Monday, November 21, 2022 at 7:37:33 PM UTC+5:30 Michael Joyner wrote:
There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.


On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/1790c907-ce31-4d97-a5b9-1915fef68865n%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT

Are you using gwt-RPC ?
Yes! we are using GWT-RPC & currently having a single WAR of near about 500mb, having CLIENT-SHARED-SERVER in a same project.

You'll need to switch to JSON for data transport.
Is there any drawback of switching to JSON in GWT, such as impact on performance etc.

You'll need to use something like DominoKit REST.
We found one RestyGWT, but not sure about its final impact as we haven't applied it yet. any suggestions...

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.
We cannot get why keeping SHARED CODE as a separate project is best. We are not having any library of GWT on server side. So except MODELS, what are the other stuffs we can have in SHARED CODE PROJECT.   

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least
This is where we are stuck & looking for the solution with a minimum change and should be stable but unable to figure out yet. 

On Monday, November 21, 2022 at 7:37:33 PM UTC+5:30 Michael Joyner wrote:
There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.


On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/45d2f32e-9e18-4f34-90e0-8f9d00a6f281n%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT

Can't you use your GWT-RPC servlets inside Spring Boot? (and only change them so you can have Spring inject dependencies into them so you can effectively rewrite the entire backend without touching the frontend at all)

On Monday, November 21, 2022 at 3:07:33 PM UTC+1 Michael Joyner wrote:
There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.


On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/79e8ad42-5b30-4aef-870b-b6c0e73e35b9n%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT

There are a lot of factors to consider.

Are you using gwt-RPC ? You'll need to switch to JSON for data transport.

You'll need to use something like DominoKit REST (https://github.com/DominoKit/domino-rest)  for the data transport layer.

It would be also be best to split the project into three projects. An API project, a shared code project, and a UI project.

If you are using gwt-RPC then IMHO there will need to be a big refactoring change at the very least.

On 11/21/22 08:19, viny...@gmail.com wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

Re: Convert Existing GWT Backend to SPRING BOOT

My friend, I join this request as I am in the same process.

In my case, I am still migrating the have version first.

On Mon, Nov 21, 2022 at 1:20 PM viny...@gmail.com <viny.jais@gmail.com> wrote:

We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.
--
Christian Nzhie.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CACFgmx-VAjB1wQQzrk%3Dz1khVnMSYUJKaTLpeVys1N3F687Bxyg%40mail.gmail.com.

Convert Existing GWT Backend to SPRING BOOT


We are having a huge project already running successfully on GWT.

But for some reasons we are planning to move our backend to SPRING-BOOT keeping front end in GWT. 

Is there any way we can do it easily without a big change in our existing application. 


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c267bbb3-504f-41a8-896a-a2c2463eccdcn%40googlegroups.com.

Friday, November 18, 2022

Re: Trying to get GWT app deployed in local Tomcat (using Eclipse)

Figured out the Sync CodeServer option only appears if you tick GWT in the Project Facets:
Screen.png

On Wednesday, 25 August 2021 at 12:09:28 am UTC+10 mmo wrote:
Really odd!
Here is how this looks on my side:
GWT-Facet-Settings.png

On Tuesday, August 24, 2021 at 3:41:34 PM UTC+2 Craig Mitchell wrote:
Interesting.  I don't have that setting:

screenshot.png

I'm using the standard Eclipse for Java Developers.  Not Eclipse for Enterprise Java.

On Monday, 23 August 2021 at 11:01:20 pm UTC+10 mmo wrote:
@Craig Mitchell

> I've never seen an option to start the code server automatically
Right-click on the mode --> GTW --> Settings --> GWT - Facet Settings: There is a checkbox under "Super Development Mode" labeled "Sync the CodeServer state with the WTP server. The WTP server start and stop will also start and stop the CodeServer".

> I think you mean the CodeServer doesn't always show in the Development mode.
No - as I wrote: the CodeServer shows up reliably in this view, but the Web-Server doesn't anymore. It used to, though, so I am puzzled why this is not working anymore.

> I just use a "Launch Chrome" launcher to start Chrome in debug, so I don't need it to show up.
These "Connect to Chrome" and "Launch Chrome" entries usually appear in the "Run As"/"Debug As"-context menu but often they don't. And once they disappeared, they don't show up anymore until the next Eclipse-restart. Very odd and annoying!  :-(

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/58150799-80ea-4442-82e4-7e5e0ff07735n%40googlegroups.com.

Wednesday, November 16, 2022

Re: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar

Replace the dated version of the jar as the error message indicates.

On 11/16/22 15:39, Christian Nzhie wrote:
No one gave a try on this issue?

On Thursday, June 7, 2018 at 9:51:33 AM UTC abdenour Bali wrote:
Has anybody ran through this error using GWT 2.7

Description Resource Path Location Type
The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar /XXXXXXX/war/WEB-INF/lib Unknown Google Web Toolkit Problem

Thanks.
Abdenour

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/ed9e1fcf-f30f-41d7-be3c-54897c7fb4a8n%40googlegroups.com.

Re: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar

I used to see that when I was using a newer GWT version than what was checked into WEB-INF/lib jars...  Try taking the gwt-servlet.jar from your GWT library and replacing the gwt-servlet.jar in your web app lib folder.

(Eclipse used to have an autofix option that would do that for you).

Jeff

On Wednesday, November 16, 2022 at 1:39:41 PM UTC-7 ngf.ch...@gmail.com wrote:
No one gave a try on this issue?

On Thursday, June 7, 2018 at 9:51:33 AM UTC abdenour Bali wrote:
Has anybody ran through this error using GWT 2.7

Description Resource Path Location Type
The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar /XXXXXXX/war/WEB-INF/lib Unknown Google Web Toolkit Problem

Thanks.
Abdenour

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/b5c286b7-0392-488d-a994-e6733b87e282n%40googlegroups.com.

Re: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar

No one gave a try on this issue?

On Thursday, June 7, 2018 at 9:51:33 AM UTC abdenour Bali wrote:
Has anybody ran through this error using GWT 2.7

Description Resource Path Location Type
The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar /XXXXXXX/war/WEB-INF/lib Unknown Google Web Toolkit Problem

Thanks.
Abdenour

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/ed9e1fcf-f30f-41d7-be3c-54897c7fb4a8n%40googlegroups.com.

Re: Security Vulnerabilities with GWT

Thanks for working on this, Rafat.

I've deployed a build of this to https://repo.vertispan.com/gwt-snapshot/ with version 2.11.0-fix-9778-SNAPSHOT. This uses the new groupIds, org.gwtproject:gwt-servlet:2.11.0-fix-9778-SNAPSHOT.

For example, see https://repo.vertispan.com/gwt-snapshot/org/gwtproject/gwt-servlet/2.11.0-fix-9778-SNAPSHOT/ to get the gwt-servlet jar.

The patch looks like what I had expected from earlier discussion, thanks for manually confirming it yourself. If someone can confirm the build solves this issue, we can move forward with landing it.
On Friday, November 11, 2022 at 2:14:20 PM UTC-6 rafat.a...@gmail.com wrote:
I did make a PR for fixing this issue by removing the pom.xml file from the rebased jar https://github.com/gwtproject/gwt/pull/9785

I did scan a sample project and attached is the report. It would be great if there is anyone can help verify the fix.

On Friday, 28 October 2022 at 16:53:20 UTC+2 nilo...@gmail.com wrote:
This is discussed at https://github.com/gwtproject/gwt/issues/9778 and https://github.com/gwtproject/gwt/issues/9752: this is a false positive, but still needs to be corrected. The simplest fix is probably to just stop packaging up the "I am running an old version" marker file, since the

Is there a functioning "bug bounty" tool for github? I found a few options that all seem defunct, but this seems like a good candidate for someone to either scratch their own itch and get it fixed, or fund someone else who has the time.

Regardless, as someone not actually affected by this false positive (so I can't justify the time right now to focus on it, run the verification that tools accept the output, etc), I'll put up a bounty of 100USD (via paypal/etc) to see this fixed, with a bonus 100USD for a first-time contributor. If someone has experience with a platform for setting up bounties like this, it might be helpful to formalize future issues.

On Wednesday, October 26, 2022 at 4:07:48 PM UTC-5 bsha...@qvera.com wrote:
I know that this conversation is about 2 years old.  We upgraded to GWT 2.10 in hopes that it would resolve the following vulnerabilities with protobuf-java, they are all being reports in the gwt-servlet.jar (version 2.10.0):

These are all being reported in our project by the AWS Enhanced Scanning.  It there any way to upgrade Protobuf from 2.5.0 to the latest version of 3.21.8?

Thanks in advance.
Ben

On Tuesday, June 30, 2020 at 4:16:01 AM UTC-6 priyako...@gmail.com wrote:
Thank you very much for quick responses.
Here are Vulnerabilities listed -


Gwt-dev.jar -
1.1 Vulnerable version of jetty library(current version-- 9.2.14, available version -9.2.27+ ) 
[Associated CVEs -  CVE-2017-7656,CVE-2017-7657,CVE-2017-7658,CVE-2017-9735,CVE-2018-12536]
1.2 Vulnerable version of commons-collections(current version - 3.2.1)  [ CVE-2015-6420,CVE-2017-15708,CVE-2014-3577]
1.3 Vulnerable version of org.apache.httpcomponents:httpclient(current version - 4.3.1)  [ CVE-2015-6420,CVE-2017-15708,CVE-2014-3577]
1.4 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0) [CVE-2015-5237]
1.5  Vulnerable version of htmlunit ( current version - 2.19 , available version- 2.37) [CVE-2020-5529]

Gwt-servlet.jar -
        1.1 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0) [CVE-2015-5237]


On Monday, 29 June 2020 16:27:41 UTC+5:30, Priya Kolekar wrote:

Hi All,

Security Vulnerability have been detected in gwt-dev.jar & gwt-servlet.jar(in release 2.8.2) & are reported by Dependency checker tool.

Below are the details -

Gwt-dev.jar -
1.1 Vulnerable version of jetty library(current version-- 9.2.14, available version -9.2.27+ )
1.2 Vulnerable version of commons-collections(current version - 3.2.1)
1.3 Vulnerable version of org.apache.httpcomponents:httpclient(current version - 4.3.1)
1.4 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0)
1.5  Vulnerable version of htmlunit ( current version - 2.19 , available version- 2.37)

Gwt-servlet.jar -
        1.1 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0)

Given above vulnerabilities -
1. Are those security issues addressed in latest 2.9.0 release?
2. If no, is there a plan to include them in any future release say 3.x?
3. As we know that gwt-dev.jar is used for development purpose & can be flagged as false positive, still are there any attack surfaces exists?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/1f98d1cf-fcbe-4330-8495-b36e8101ce89n%40googlegroups.com.

Re: unable to instal and use gwt-plugin in Eclipse 2022-06 or Eclipse 2022-09

For the time being you can install the plugin from 

https://github.com/gwt-plugins/gwt-eclipse-plugin/issues/406#issuecomment-1278543693

The linked comment in that issue contains a download to install the plugin from your disk. Someone also made an update site in some other comments in that issue. Also note that if you use the download you might need to install some other Eclipse plugins the GWT plugin depends on. See my comment in the linked issue above.


-- J.


ngf.ch...@gmail.com schrieb am Dienstag, 15. November 2022 um 17:34:09 UTC+1:
I am using Eclipse IDE for Enterprise Java and Web Developers - 2022-09 and am unable to install and use gwt plugin.
1. I have before then used Eclipse IDE for Enterprise Java and Web Developers - 2022-06 with the same result. The plugin doesn't install in eclipse.


How to use gwt now as i can't use it through my IDE.?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/ad3fb1c4-b62b-48f5-acb9-176da8cc7fefn%40googlegroups.com.

Tuesday, November 15, 2022

Re: unable to instal and use gwt-plugin in Eclipse 2022-06 or Eclipse 2022-09

I am facing the same problems here, having teams of developers only familiar with the GWT plugin.

Unfortunately, the alternative is ratehr tricky.
To my understanding it involves use of Maven run configurations within Eclipse respective to the GWT plugin run configurations plus forcing "maven-install-plugin" to run within Eclipse.
see https://www.eclipse.org/m2e/documentation/release-notes-17.html#new-syntax-for-specifying-lifecycle-mapping-metadata

I am afraid GWT plugin is sadly leaving us.

I hope this helps you.

On Tuesday, 15 November 2022 at 16:34:09 UTC ngf.ch...@gmail.com wrote:
I am using Eclipse IDE for Enterprise Java and Web Developers - 2022-09 and am unable to install and use gwt plugin.
1. I have before then used Eclipse IDE for Enterprise Java and Web Developers - 2022-06 with the same result. The plugin doesn't install in eclipse.


How to use gwt now as i can't use it through my IDE.?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/13e4ac1b-efb1-4fa5-a89d-eb80bd6dbf5en%40googlegroups.com.

unable to instal and use gwt-plugin in Eclipse 2022-06 or Eclipse 2022-09

I am using Eclipse IDE for Enterprise Java and Web Developers - 2022-09 and am unable to install and use gwt plugin.
1. I have before then used Eclipse IDE for Enterprise Java and Web Developers - 2022-06 with the same result. The plugin doesn't install in eclipse.


How to use gwt now as i can't use it through my IDE.?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/85d33b76-df5d-45c0-9b89-be56da7928b4n%40googlegroups.com.

Friday, November 11, 2022

Re: Security Vulnerabilities with GWT

I did make a PR for fixing this issue by removing the pom.xml file from the rebased jar https://github.com/gwtproject/gwt/pull/9785

I did scan a sample project and attached is the report. It would be great if there is anyone can help verify the fix.

On Friday, 28 October 2022 at 16:53:20 UTC+2 nilo...@gmail.com wrote:
This is discussed at https://github.com/gwtproject/gwt/issues/9778 and https://github.com/gwtproject/gwt/issues/9752: this is a false positive, but still needs to be corrected. The simplest fix is probably to just stop packaging up the "I am running an old version" marker file, since the

Is there a functioning "bug bounty" tool for github? I found a few options that all seem defunct, but this seems like a good candidate for someone to either scratch their own itch and get it fixed, or fund someone else who has the time.

Regardless, as someone not actually affected by this false positive (so I can't justify the time right now to focus on it, run the verification that tools accept the output, etc), I'll put up a bounty of 100USD (via paypal/etc) to see this fixed, with a bonus 100USD for a first-time contributor. If someone has experience with a platform for setting up bounties like this, it might be helpful to formalize future issues.

On Wednesday, October 26, 2022 at 4:07:48 PM UTC-5 bsha...@qvera.com wrote:
I know that this conversation is about 2 years old.  We upgraded to GWT 2.10 in hopes that it would resolve the following vulnerabilities with protobuf-java, they are all being reports in the gwt-servlet.jar (version 2.10.0):

These are all being reported in our project by the AWS Enhanced Scanning.  It there any way to upgrade Protobuf from 2.5.0 to the latest version of 3.21.8?

Thanks in advance.
Ben

On Tuesday, June 30, 2020 at 4:16:01 AM UTC-6 priyako...@gmail.com wrote:
Thank you very much for quick responses.
Here are Vulnerabilities listed -


Gwt-dev.jar -
1.1 Vulnerable version of jetty library(current version-- 9.2.14, available version -9.2.27+ ) 
[Associated CVEs -  CVE-2017-7656,CVE-2017-7657,CVE-2017-7658,CVE-2017-9735,CVE-2018-12536]
1.2 Vulnerable version of commons-collections(current version - 3.2.1)  [ CVE-2015-6420,CVE-2017-15708,CVE-2014-3577]
1.3 Vulnerable version of org.apache.httpcomponents:httpclient(current version - 4.3.1)  [ CVE-2015-6420,CVE-2017-15708,CVE-2014-3577]
1.4 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0) [CVE-2015-5237]
1.5  Vulnerable version of htmlunit ( current version - 2.19 , available version- 2.37) [CVE-2020-5529]

Gwt-servlet.jar -
        1.1 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0) [CVE-2015-5237]


On Monday, 29 June 2020 16:27:41 UTC+5:30, Priya Kolekar wrote:

Hi All,

Security Vulnerability have been detected in gwt-dev.jar & gwt-servlet.jar(in release 2.8.2) & are reported by Dependency checker tool.

Below are the details -

Gwt-dev.jar -
1.1 Vulnerable version of jetty library(current version-- 9.2.14, available version -9.2.27+ )
1.2 Vulnerable version of commons-collections(current version - 3.2.1)
1.3 Vulnerable version of org.apache.httpcomponents:httpclient(current version - 4.3.1)
1.4 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0)
1.5  Vulnerable version of htmlunit ( current version - 2.19 , available version- 2.37)

Gwt-servlet.jar -
        1.1 Vulnerable version of Google Protobuf(current version - 2.5.0, available version - 3.4.0)

Given above vulnerabilities -
1. Are those security issues addressed in latest 2.9.0 release?
2. If no, is there a plan to include them in any future release say 3.x?
3. As we know that gwt-dev.jar is used for development purpose & can be flagged as false positive, still are there any attack surfaces exists?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/802ff23c-f281-4f18-8c7e-947b18d60fb2n%40googlegroups.com.

Thursday, November 10, 2022

Re: JavaFX for GWT

Yes, we will provide server communications features soon, because the project is actually not "just" about the JavaFX API, but also about a whole ecosystem around it, so people can do Enterprise-level development.

To start with, we are working on the Web Fetch API emulation (that works cross-platform), which will allow you to request web services. More info about that can be found in this GitHub discussion.

We are also working on a cross-platform WebSocket API, which will be published in a second step after the Fetch API.

And finally on top of WebSocket, we will publish a cross-platform EventBus API, with a server-side implementation for Vert.x (we will probably do a SpringBoot implementation as well, but later).
Vert.x is prioritised because Modality (the Enterprise app we are talking about in our README) is using Vert.x.


On Wednesday, 9 November 2022 at 19:02:18 UTC eliasbalasis@gmail.com wrote:
This is quite an interesting approach, I am intrigued.

Some remoting capabilities could be useful though.
I know a few standalone apps (Swing, SWT, JavaFX etc.) that rely on server communications.

Perhaps custom communication layers for various protocols and transports could be added by contributors.

On Wednesday, 9 November 2022 at 14:58:42 UTC Bruno Salmon wrote:
hi Jonathan,

Unfortunately for your project, I have no plan to support Swing as covering JavaFX is already a big job.

If you are looking for a solution to run your app without a server like WebFX does, I don't think that exists for Swing.

But if you don't mind having a server, there are solutions like WebSwing that can run your app on a server, and then you can have a kind of remote desktop of it in the browser. 

On Wednesday, 9 November 2022 at 12:39:48 UTC Jonathan Franchesco Torres Bca wrote:
Hi,

And what about JFC Swing which is interoperable with JavaFX.
I have a desktop application that mixes both and we use substance to improve the display of the controls
I leave an example
image.png

 

     

Jonathan Franchesco Torres Baca(@jofrantoba)

CIO - Kiongo Technology

Jr Juan Voto Bernales 344 - La Victoria, Lima - Perú

Teléfono   +5116357857

Cel.    +51929913524



El mar, 8 nov 2022 a las 9:38, Bruno Salmon (<dev.s...@gmail.com>) escribió:
Hi,

I'm working on a JavaFX transpiler powered by GWT.
It lets you use JavaFX as a UI toolkit in your GWT apps.
The JavaFX API is far from completely covered, but you can already see some interesting results.

The project is on GitHub for those who are interested.
https://github.com/webfx-project/webfx

If you have any questions, please let me know.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/8210a6a2-ad1a-4b2d-ba68-19dcc5fbeef3n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/628df0ef-c57b-49a5-98ce-fc1820ede45dn%40googlegroups.com.

Wednesday, November 9, 2022

Re: JavaFX for GWT

This is quite an interesting approach, I am intrigued.

Some remoting capabilities could be useful though.
I know a few standalone apps (Swing, SWT, JavaFX etc.) that rely on server communications.

Perhaps custom communication layers for various protocols and transports could be added by contributors.

On Wednesday, 9 November 2022 at 14:58:42 UTC Bruno Salmon wrote:
hi Jonathan,

Unfortunately for your project, I have no plan to support Swing as covering JavaFX is already a big job.

If you are looking for a solution to run your app without a server like WebFX does, I don't think that exists for Swing.

But if you don't mind having a server, there are solutions like WebSwing that can run your app on a server, and then you can have a kind of remote desktop of it in the browser. 

On Wednesday, 9 November 2022 at 12:39:48 UTC Jonathan Franchesco Torres Bca wrote:
Hi,

And what about JFC Swing which is interoperable with JavaFX.
I have a desktop application that mixes both and we use substance to improve the display of the controls
I leave an example
image.png

 

     

Jonathan Franchesco Torres Baca(@jofrantoba)

CIO - Kiongo Technology

Jr Juan Voto Bernales 344 - La Victoria, Lima - Perú

Teléfono   +5116357857

Cel.    +51929913524



El mar, 8 nov 2022 a las 9:38, Bruno Salmon (<dev.s...@gmail.com>) escribió:
Hi,

I'm working on a JavaFX transpiler powered by GWT.
It lets you use JavaFX as a UI toolkit in your GWT apps.
The JavaFX API is far from completely covered, but you can already see some interesting results.

The project is on GitHub for those who are interested.
https://github.com/webfx-project/webfx

If you have any questions, please let me know.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/8210a6a2-ad1a-4b2d-ba68-19dcc5fbeef3n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/72879326-af08-48da-8eaf-6cfee7bc85d3n%40googlegroups.com.

Re: JavaFX for GWT

hi Jonathan,

Unfortunately for your project, I have no plan to support Swing as covering JavaFX is already a big job.

If you are looking for a solution to run your app without a server like WebFX does, I don't think that exists for Swing.

But if you don't mind having a server, there are solutions like WebSwing that can run your app on a server, and then you can have a kind of remote desktop of it in the browser. 

On Wednesday, 9 November 2022 at 12:39:48 UTC Jonathan Franchesco Torres Bca wrote:
Hi,

And what about JFC Swing which is interoperable with JavaFX.
I have a desktop application that mixes both and we use substance to improve the display of the controls
I leave an example
image.png

 

     

Jonathan Franchesco Torres Baca(@jofrantoba)

CIO - Kiongo Technology

Jr Juan Voto Bernales 344 - La Victoria, Lima - Perú

Teléfono   +5116357857

Cel.    +51929913524



El mar, 8 nov 2022 a las 9:38, Bruno Salmon (<dev.s...@gmail.com>) escribió:
Hi,

I'm working on a JavaFX transpiler powered by GWT.
It lets you use JavaFX as a UI toolkit in your GWT apps.
The JavaFX API is far from completely covered, but you can already see some interesting results.

The project is on GitHub for those who are interested.
https://github.com/webfx-project/webfx

If you have any questions, please let me know.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/8210a6a2-ad1a-4b2d-ba68-19dcc5fbeef3n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/4a35b72f-a665-4107-848b-a331eafd17a6n%40googlegroups.com.

Re: JavaFX for GWT

Hi Jonathan,

Unfortunately for your project, I have no plan to support Swing, as covering JavaFX itself is already a big job.

If you want a standalone solution that works without a server like WebFX does, I don't think that exists for Swing.

But if you don't mind having a server, there are solutions like WebSwing that can run your app on a server and then run a kind of remote desktop view of it in the browser.


On Wednesday, 9 November 2022 at 12:39:48 UTC Jonathan Franchesco Torres Bca wrote:
Hi,

And what about JFC Swing which is interoperable with JavaFX.
I have a desktop application that mixes both and we use substance to improve the display of the controls
I leave an example
image.png

 

     

Jonathan Franchesco Torres Baca(@jofrantoba)

CIO - Kiongo Technology

Jr Juan Voto Bernales 344 - La Victoria, Lima - Perú

Teléfono   +5116357857

Cel.    +51929913524



El mar, 8 nov 2022 a las 9:38, Bruno Salmon (<dev.s...@gmail.com>) escribió:
Hi,

I'm working on a JavaFX transpiler powered by GWT.
It lets you use JavaFX as a UI toolkit in your GWT apps.
The JavaFX API is far from completely covered, but you can already see some interesting results.

The project is on GitHub for those who are interested.
https://github.com/webfx-project/webfx

If you have any questions, please let me know.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/8210a6a2-ad1a-4b2d-ba68-19dcc5fbeef3n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/d84d4bcb-9576-4c52-b72c-3fb87278bbe7n%40googlegroups.com.