Conversion table types names to class

2016-09-16 Thread Nowakowski, Mateusz
Hi, org.apache.camel.util.ObjectHelper.loadSimpleType(...) is able to create byte[].class object from "byte[]" which is byte[].class.getCanonicalName(). However byte[].class.getName() is "[B" Is there a reason why "[B" is not supported? -- Regards, Mateusz Nowakowski

SpringCamelContext / dependsOn/ afterPropertiesSet issue

2014-03-13 Thread Nowakowski, Mateusz
Hi Was it addressed somehow? http://camel.465427.n5.nabble.com/SpringCamelContext-afterPropertiesSet-never-called-td5137267.html I have the same issue with the latest camel. I had to apply same workaround as mentioned in the thread. -- Regards, Mateusz Nowakowski

RE: camel xslt 2.0 support

2012-06-24 Thread Nowakowski, Mateusz
I made the following change to ./etc/system.properties: I don't recommend changing ./etc/system.properties to Saxon because it won't work honestly. Saxon (xslt2 implementation) is a bundle and is loaded just before camel-saxon but it doesn't matter, javax.xml.transform.TransformerFactory

RE: Second error handed by continued(true) doesn't work

2011-06-02 Thread Nowakowski, Mateusz
Is your JBI endpoint a Binding Component that sends the exchange on a JBI based workflow? Is your JBI flow up and running? Yes, the JBI is working, but it returns JBI Fault which is translated into FaultException for Camel. I've change the Camel flow so that it uses doTry() instead of

Second error handed by continued(true) doesn't work

2011-06-01 Thread Nowakowski, Mateusz
Hi, I have such a flow: onException(Throwable.class) .handled(false) .process(logError(com.sabre.sws.ping.v2, SWSO_Ping Camel Process Failed)) .process(logEnd(Level.ERROR, com.sabre.sws.ping.v2, Camel processing has ended with error));