You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

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 your Application:

 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%20API%20Reference.pdf]

  • No labels