I'm using : Camel 2.10.6 with camel-jetty : 2.10.6 on ServiceMix 4.5.2

Here are the configuration of route and ssl : 
<route id="EXT_SERV_FCT_100_login">
   <from
uri="jetty:https://0.0.0.0:{{https_port}}/service/login?continuationTimeout=5000";
/>
   <to uri="direct:service_login_post" />
</route>

<bean id="jetty"
class="org.apache.camel.component.jetty.JettyHttpComponent">
        <property name="httpClientMinThreads"><value>10</value></property>
        <property name="httpClientMaxThreads"><value>50</value></property>
        <property name="minThreads"><value>10</value></property>
        <property name="maxThreads"><value>50</value></property>
        <property name="socketConnectorProperties">
        <map>
            <entry key="acceptors" value="4"/>
            <entry key="maxIdleTime" value="5000"/>
        </map>
        </property>
        <property name="sslSocketConnectors">
                <map>
                        <entry key="${https_port}">
                                <bean 
class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
                                        <property name="password" 
value="${https_jetty_password}" />
                                        <property name="keyPassword" 
value="${https_jetty_keypassword}" />
                                        <property name="keystore" 
value="${https_jetty_keystore}" />
                                </bean>
                        </entry>
                </map>
        </property>
</bean> 

When I'm replacing https with http in the route definition,
continuationTimeout is really about 5s. Otherwise, I have a 30s timeout.



--
View this message in context: 
http://camel.465427.n5.nabble.com/continuationTimeout-doesn-t-work-with-jetty-and-ssl-tp5755913p5756598.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to