Hi,
This is another try to post my problem - maybe you ran into something
similar...
I use fuse-esb 3.3.1.3 with camel 1.4.
I have a Camel SA & i try to add an interceptor via the following code:
Router class:
public void configure() throws Exception {
getContext().addInterceptStrategy(new MyFromEndpointInterceptor());
from("jbi:service:http://oxp/oXpInternalService")
.process(new OXpServicesAuthenticationProcessor());
}
& i get the following exception:
org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'camelContext:beanPostProcessor': Cannot
resolve reference to bean 'camelContext' while setting bean property
'camelContext'; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating be
an with name 'camelContext': Invocation of init method failed; nested
exception is java.lang.NoSuchMethodError:
org.apache.camel.CamelContext.addInterceptStrategy(Lorg/apache/camel
/spi/InterceptStrategy;)
What i tried to do is to remove camel-core 1.4 from my classpath & to add
1.5 (after getting it via pom dependecy)
Here is my camel-context
<?xml version="1.0" encoding="UTF-8"?>
<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.0.xsd
http://activemq.apache.org/camel/schema/spring
http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">
<camelContext useJmx="true"
xmlns="http://activemq.apache.org/camel/schema/spring">
<!-- Define the location of our router builder class -->
<package>com.liav.oxp.esb.poc</package>
</camelContext>
</beans>
Many thanks.
Liav.
--
View this message in context:
http://www.nabble.com/Need-assistance-to-solve-a-camelContext-exception-tp21591380s22882p21591380.html
Sent from the Camel - Users mailing list archive at Nabble.com.