<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://camel.apache.org/schema/spring 
       http://camel.apache.org/schema/spring/camel-spring.xsd
    ">
    
    <manifest>
        DynamicImport-Package=*
    </manifest>
	
	<camelContext xmlns="http://camel.apache.org/schema/spring">
		<onException>
		   <exception>java.lang.Exception</exception>
		   <redeliveryPolicy maximumRedeliveries="10" redeliveryDelay="300000"/>
		</onException>
        <route>
            <from uri="file:c:/tmp/" />
            <to uri="file:g:/out" />
        </route>
    </camelContext>

</beans>