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.