views:

70

answers:

3
A: 

Try XSLT trasformation in OpenESB.

Padmarag
A: 

When it comes to complex business logic it's best to delegate as much work as possible to Java code instead of doing complex stuff in BPELs which are really turn into a mess quickly as they grow. I would just make an EJB and call it from BPEL.

Vladimir Volodin
A: 

I did one better. I wrote my own data flow processing system from scratch. Everything else available was just too heavyweight and complex.

My new system, code named LightRail, works great. All connectivity is component driven and defined through a single JSON configuration file. All processing and flow control is handled through a single BeanShell script.

I've already deployed 10 different data flows in the last 10 months, connecting to IMAP, SFTP, FTP, Files and a database or two. Life is good again...

Andrew

Piko