Does anyone have experience using the javax.script scripting inside a bundle? Normally you can add the jar(s) for any script language (ruby, python, ...) to the class path, and the scripting is available from
new ScriptEngineManager().getEngineByExtension(extension) (extension is "rb" for ruby, "py" for python, ...) without doing anything else. but this does not work when the script jars are inside a bundle (in the bundle classpath). Thanks, Lance