Valery, please have first a look at [1]. We need some more information, if you expect help from us: - Complete stack trace - Which Camel version do you use? - Which java version do you use? - Later, we are may also interested in the RequestProcessor, HeaderSetterProcessor or ResponseProcessor...
[1] http://camel.apache.org/support.html Best, Christian ----------------- Software Integration Specialist Apache Camel committer: https://camel.apache.org/team V.P. Apache Camel: https://www.apache.org/foundation/ Apache Member: https://www.apache.org/foundation/members.html https://www.linkedin.com/pub/christian-mueller/11/551/642 On Sat, Aug 24, 2013 at 12:19 PM, Valery <valery.sed...@gmail.com> wrote: > Hi there! > > A have route: > from("cxf:/CDAMediationService?serviceClass=" + > CDAMediationService.class.getName()) > .process(new RequestProcessor()) > .log(LoggingLevel.INFO , "Request before > transformation:\n${body}") > .to("xslt:xslt/MediateCDARequest.xslt") > .log(LoggingLevel.INFO , "Request after > transformation:\n${body}") > .process(new HeaderSetterProcessor()) > .to("cxf://"+cdaUri+"?serviceClass=" + > Invoke.class.getName()) > .wireTap("direct:saveResponse") > .log(LoggingLevel.INFO , "Respone before > transformation:\n${body}") > .to("xslt:xslt/MediateCDAResponse.xslt") > .log(LoggingLevel.INFO , "Response after > transformation:\n${body}") > .process(new ResponseProcessor()); > > Somewhere between 5th and 7th row it throws StackOverflowException (i > attached log file with stack trace). log.txt > <http://camel.465427.n5.nabble.com/file/n5737854/log.txt> > I need help to solve this problem, or find round way. > > P.S. sorry for my english:) > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-throws-StackOverflowException-while-converting-message-body-tp5737854.html > Sent from the Camel - Users mailing list archive at Nabble.com. >