Clover on AIX Server

Hi guyz, does anyone tried to run CloverETL on a AIX Server? or Linux Server?

I Have a CloverETL sample that runs on Windows Platform, but i’m having a problem when I run it in AIX server. it says something about not compilable…

Hi !

We have tested clover on AIX server without problems. That error message can be a result of running clover on AIX server where only JRE is present - no JDK which includes javac compiler.

If you have, for example, a Reformat component, which uses transformation code embedded as Java source - Clover needs to compile that source into .class file in order to execute such transformation.
It tries to look for javac “inside Java” or for javac as command line utility. if it can’t find it - you get such error message.

You have three options
- make something like “tools.jar” part of your classpath
- make sure command line tool javac can be executed under your user account
- use Clover’s internal transformation language - it does not need javac

David.

CloverETL since version 2.4.0 contains Janino (http://www.janino.net/) embedded compiler which eliminates the need to have either javac or tools.jar installed together with the Java environment.