Hi

Great! now you're indeed one step forward where the Drools Endpoint get's
kicked in through Camel! And the exception you're observing is thrown from
DroolsEndpoint class itself [1] which according to the exception message it
indicates that you don't have a proper configuration:

   Could not find GridNode for uri="node1/ksession1" in CamelContext. Check
configuration. 

You have to first *bind* a GridNode into the Camel registry, as that's
apparently where the DroolsEndpoint does look up for a GridNode with the
name "node1".

I found a good tutorial for usage of this Camel component [2] which you may
want to walk through, and also notice how it does bind the node into the
Camel registry beforehand:

GridNode node = grid.createGridNode("node");
Context context = new JndiContext();
context.bind("node", node);

And for further question may be also make use of the Drools user forum
itself [3] to get better support from the people knowing more about this
component.

[1]
https://github.com/droolsjbpm/droolsjbpm-integration/blob/master/drools-camel/src/main/java/org/drools/camel/component/DroolsEndpoint.java#L161
[2]
http://lucazamador.wordpress.com/2011/06/15/jbpm5-drools-apache-camel-integration/
[3] http://drools.46999.n3.nabble.com/Drools-User-forum-f47000.html

Babak

--
View this message in context: 
http://camel.465427.n5.nabble.com/org-apache-camel-RuntimeCamelException-org-apache-camel-TypeConverterLoaderException-Failed-to-load--tp5575757p5577731.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to