On Monday, April 4, 2016 at 10:27:32 AM UTC+2, Pramod Karandikar wrote: > > We are working on a GWT 2.4.0 based web application hosted on JBoss > 5.2.0.1. We are using Java/Spring on the server side. > One of the Async services takes more than 5 minutes to return the response > from the server, and this leads to error (on production environment): > > com.google.gwt.user.client.rpc.StatusCodeException: 504 Gateway Time-out > The gateway did not receive a timely response from the upstream server or > application. > > The issue doesn't occur when the JBoss is hosted on my local machine. I am > suspecting this is some server side setting on production environment or > some other parameter for GWT production mode which is causing the timeout. > > Is there anything that is missed from our side? >
As you've been told on StackOverflow [1], you need to fix this at the server side; that means this is a JBoss AS question (or possibly an Apache/Nginx/Haproxy/Lighttpd/etc. if you have a reverse proxy in front of your JBoss AS), not a GWT-related one. [1] https://stackoverflow.com/q/36357080/116472 -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
