Re: Deploy to Google App Engine (GAE)

2023-12-22 Thread Craig Mitchell
Managed to get server debugging working by adding: -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005 to the gwt-maven-plugin. And then creating a Remote JVM Debug launcher in IntelliJ (on port 5005), that I run after running gwt:devmode. I'm surprised IntelliJ can't just automatica

Re: Deploy to Google App Engine (GAE)

2023-12-22 Thread Craig Mitchell
Thanks Tim! Looking at your POM files, I see I missed adding: ${project.build.directory}/${project.artifactId}-${project.version}/WEB-INF/classes I also needed to: - Convert all my servlets to @WebServlet (as the GWT Jetty server didn't pick up my web.xml like the GAE server used to).

Re: Seeking Guidance: GWT Version with Resolved XSS Vulnerabilities - Which One to Use?

2023-12-22 Thread 'Frank Hossfeld' via GWT Users
you should never deploy your tests into production. flosanlop17 schrieb am Donnerstag, 21. Dezember 2023 um 17:52:49 UTC+1: > I am currently working on some security incidents reported in an > application that uses GWT, in its version 2.5.0 according to the report for > this version there are se