I have problem with long running requests - they timeout.
They are serviced by default connector,
how can I change it's timeout?
I tried adding connector to etc/jetty.xml
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.BlockingChannelConnector">
<Set name="host"><Property name="jetty.host" /></Set>
<Set name="maxIdleTime">800000</Set>
<Set name="Acceptors">2</Set>
<Set name="statsOn">false</Set>
<Set name="confidentialPort">8443</Set>
<Set name="lowResourcesMaxIdleTime">5000</Set>
</New>
</Arg>
</Call>
It was added to the default connector, but later my requests are serviced by the default connector with timeout 200.000 instead of by my connector.
How can I prevent default connector from being created or configure it's timeout?
(it seems to me that changing it's timeout is impossible, I also can't prevent it from being created and added)
Thanks.
Edited by: camel on Feb 6, 2012 5:14 PM
Edited by: camel on Feb 6, 2012 5:15 PM
Edited by: camel on Feb 6, 2012 5:16 PM