Hi,
I have following exception in remoting module:
cancelled because ack timeout has expired, no acks for this message received from client within 300000 milliseconds
It is from OutboundingMessage.java
In this class:
long ackTimeout = OutboundMessage.this.ackTimeout;
the 300000 ms is default value
Question: where I can configure the timeout?
Is it in standalone.xml?
<remote connector-ref="http-remoting-connector" thread-pool-name="default"> <channel-creation-options>
<option name="MAX_OUTBOUND_MESSAGES" value="1234" type="remoting"/></channel-creation-options>
</remote>
if yes, which option I have to configure?
thank you
Felix