Why you do not try it out? ;-) Best, Christian
On Wed, Feb 20, 2013 at 2:52 PM, BobbySixKiller <m.desig...@free.fr> wrote: > Hi, > > I have a simple question about parsing xml and performance. Actually my > route is like this : > > from("endpointIn") > .convertBodyTo(String.class)// > .unmarshal().jaxb("com.groupemb.entite.search.compario.in")// > .process(...) > > where com.groupemb.entite.search.compario.in refers to a jaxb.index file > which refers to a java class named ResponseCompario.java > > It works fine but i was wondering, is this route more performant ?: > from("endpointIn") > .convertBodyTo(ResponseCompario.class)// > .process(...) > > NB: The xml files are pretty big. > > Best regards, > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Parsing-XML-Performance-tp5727867.html > Sent from the Camel - Users mailing list archive at Nabble.com. > --