<p>
This is my route configuration for test. I think I am using the rigth
bindy..
</p>
<code>
@Configuration
public static class ContextConfig extends SingleRouteCamelConfiguration
{
BindyFixedLengthDataFormat camelDataFormat = new
BindyFixedLengthDataFormat(
"org.mypckg.dataformat.fixedlength.model");
@Override
@Bean
public RouteBuilder route() {
return new RouteBuilder() {
@Override
public void configure() {
from("direct:start").marshal(camelDataFormat).to(
"mock:result");
}
};
}
}
</code>
--
View this message in context:
http://camel.465427.n5.nabble.com/Issue-unmarshalling-Fixed-Length-message-date-tp4431276p4431347.html
Sent from the Camel - Users mailing list archive at Nabble.com.