Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you are using Spring's 2.0 5 XML handling to parse the XML then you need to refer to the XSD locations in your XML document.

...

Code Block
<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-2.05.xsd

    http://activemq.apache.org/camel/schema/spring 
      http://activemq.apache.org/camel/schema/spring/camel-spring-1.3.xsd">

...