Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JADE has an API which makes it possible to use the JADE Engine in any Application which can execute Java .jar files, e.g. Scala, Groovy, ....

An example how to include JADE as a component in you Application:

Code Block

 JadeEngine objJadeEngine = new JadeEngine();
 JADEOptions objOptions = objJadeEngine.Options()
 
 objOptions.settings.Value(strSettingsFile);
 objOptions.profile.Value(pstrProfileName);
 objOptions.ReadSettingsFile();
  	
 objJadeEngine.Execute();
 objJadeEngine.Logout();

More Information on how to use the API you can find here:

[JADE API Referencejade/JADE%20API%20Reference.pdf]