Skip to main content
Level 2
February 7, 2019
解決済み

How to set timeout for sling servlet in AEM6.4

  • February 7, 2019
  • 3 の返信
  • 4303 ビュー

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

このトピックへの返信は締め切られました。
ベストアンサー joerghoh

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

3 の返信

Gaurav-Behl
Level 10
February 7, 2019

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.

joerghoh
Adobe Employee
joerghohAdobe Employee回答
Adobe Employee
February 7, 2019

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

Level 2
June 23, 2023

How we can send data during processing?