Using Eclipse 2025-03 (4.35.0)
OpenJDK 21.0.2
I created a GWT Web Application and deployed it on Tomcat 10.0.22, listening on port 8081.
Tomcat is deployed behind nginx. The relevant lines of the conf are:
location / {
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
proxy_pass http://127.0.0.1:8081;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
proxy_pass http://127.0.0.1:8081;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
When I point myself are https:[my weburl]/ the GWT Web Application Starter Project loads. When I click on the "Send" button the browser debug console says:
POST https://[my web url]/gwttest/greet 500 (Internal Server Error)
Any help greatly appreciated.
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 visit https://groups.google.com/d/msgid/google-web-toolkit/aed1dff8-b3a6-4689-9f99-f74afe47108bn%40googlegroups.com.
No comments:
Post a Comment