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

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

Mikael Gueck created CAMEL-6024:
-----------------------------------

             Summary: 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


http://camel.apache.org/jetty.html
 
incorrect:
    <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>
 
correct:
    <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>

--
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