You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Christian Müller (JIRA)" <ji...@apache.org> on 2013/01/30 22:07:14 UTC

[jira] [Closed] (CAMEL-6024) Camel-Jetty Spring example has broken Spring XML syntax

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

Christian Müller closed CAMEL-6024.
-----------------------------------

    Resolution: Fixed

Thanks for reporting Mikael! It's now fixed (should be online in a few hours).
                
> 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: website
>    Affects Versions: 2.10.3
>            Reporter: Mikael Gueck
>            Assignee: Christian Müller
>            Priority: Minor
>             Fix For: 2.10.4, 2.11.0
>
>
> 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