Reputation: 455
I'm trying to convert swift MT-MX using apache camel. I found: [APACHE CAMEL COMPONENT SWIFT MX][1] and i tried to use it:
@Component
public class MySpringBootRouter extends RouteBuilder {
@Override
public void configure() {
from("file://inputDir?noop=true")
.unmarshal().swiftMt()
.to("file://output?fileName=test.xml");
}
}
Is there a way to convert it directly to SwiftMX without going through the process. I did some research and found prowidesoftware translator but it's not free. If not, is there another way/library to convert it using camel?
Upvotes: 1
Views: 184