[ 
https://issues.apache.org/jira/browse/CAMEL-6024?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Müller reassigned CAMEL-6024:
---------------------------------------

    Assignee: Christian Müller
    
> Camel-Jetty Spring example has broken Spring XML syntax
> -------------------------------------------------------
>
>                 Key: CAMEL-6024
>                 URL: https://issues.apache.org/jira/browse/CAMEL-6024
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-jetty, website
>    Affects Versions: 2.10.3
>            Reporter: Mikael Gueck
>            Assignee: Christian Müller
>
> http://camel.apache.org/jetty.html
> incorrect:
> {code}
>     <bean id="jetty" 
> class="org.apache.camel.component.jetty.JettyHttpComponent">
>         <property name="socketConnectorProperties">
>             <properties>
>                 <property name="acceptors" value="4"/>
>                 <property name="maxIdleTime" value="300000"/>
>             </properties>
>         </property>
>     </bean>
> {code}
>  
> correct:
> {code}
>     <bean id="jetty" 
> class="org.apache.camel.component.jetty.JettyHttpComponent">
>       <property name="socketConnectorProperties">
>         <map>
>           <entry key="acceptors" value="4"/>
>           <entry key="maxIdleTime" value="300000"/>
>         </map>
>       </property>
>     </bean>
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to