Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session
SOLVED

How to set timeout for sling servlet in AEM6.4

Avatar

Level 2

Hi Team,

We are using sling servlet with POST method in our AEM6.4 application. We are receiving "504 Gateway timeout" response, due to long processing (we are connecting to external service from sling servlet) time. Could you please let me know, if there is way to fix it like changing timeout for sling servlet.

<form action="/slingservlet" method="POST">

        <button class="coral-Link coral-Button">Post Request</button>

    </form>

Thanks

Seran

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

This is a timeout because the server does not send any data over some time. You should either send data during processing or rather implement this as workflow or sling job. Then you can inititate the job, and regularly check the status. No need to worry about timeouts anymore.

HTH,

Jörg

View solution in original post

3 Replies

Avatar

Level 10

Probably it's happening in dispatcher but validate AEM as well. check both configs mentioned below:

/system/console/configMgr -- Apache Felix Jetty Based HTTP Service

dispatcher.any  - /rend { timeout }

share the logs, if it doesn't resolve.

Avatar

Correct answer by
Employee Advisor

This is a timeout because the server does not send any data over some time. You should either send data during processing or rather implement this as workflow or sling job. Then you can inititate the job, and regularly check the status. No need to worry about timeouts anymore.

HTH,

Jörg