Tagged Questions
JSR223 (Scripting for the Java Platform) is the Java Specification Request for a common scripting engine abstraction layer.
5
votes
1answer
162 views
reasonable handling of ScriptException thrown by JSR223 Rhino
I'm starting to run into the dirty little secrets of what is an otherwise very useful JSR223 scripting environment.
I'm using the builtin version of Rhino shipped with Java 6 SE, accessing it through ...
5
votes
2answers
4k views
How to convert Rhino-JavaScript arrays to Java-Arrays
I have the following:
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine jsEngine = mgr.getEngineByName("JavaScript");
jsEngine.eval("function getArray() {return [1,2,3,4,5];};");
...
4
votes
1answer
166 views
Is OSGi fundamentally incompatible with JSR-223 Scripting Language Discovery?
I've recently written a small specialist scripting language and used the Maven to export an OSGi compliant bundle that also exports a service descriptor into the ...
3
votes
1answer
385 views
How do I set up jsr223 scripting with scala as scripting language
So far I have tried the sling implementation for jsr223 scripting for scala, but was not able to get it set up correctly.
when I do this:
public static void main(String[] args) {
try {
...
3
votes
2answers
157 views
jsr223 + writing a script interpreter
OK. ScriptEngine.eval(String string) evaluates a string in its entirety, and ScriptEngine.eval(Reader reader) evaluates the input from a Reader in its entirety.
So if I have a file, I can open a ...
3
votes
1answer
175 views
Are there limitations to JSR223 implementation on Java 1.5
The Java API for scripting languages (JSR223) comes as standard in Java 1.6 and can be downloaded separately for Java 1.5 here.
My question is: are there any limitations or differences I should be ...
3
votes
1answer
303 views
Why doesn't jrunscript honor my classpath?
I'm trying to do some JDBC access from JavaScript using the Rhino included in Java 6. But I cannot make the DriverManager find the Driver I want to use.
These two examples should be equivalent:
...
2
votes
1answer
73 views
How to secure scripting with JSR 223?
I use Groovy as dynamic script engine to allow admin users of my web application to create little scripts as part of an interface solution, eg. do simple string operations, tokenize and so on.
...
2
votes
1answer
333 views
Replace <Unknown Source> in Java Rhino (JSR223) with actual file name
In my code, all of the scripts are contained in .js files. Whenever one of the scripts contains an error, I get this:
javax.script.ScriptException: sun.org.mozilla.javascript.internal.EcmaError: ...
1
vote
1answer
247 views
Callbacks in JSR223 Javascript, difference between Oracle JRE 1.6 and OpenJDK 1.6 (as installed on, say, Debian)
Given the following, running with Oracle JRE 6 gives the output boo, but OpenJDK 6 gives an exception
javax.script.ScriptException: sun.org.mozilla.javascript.EvaluatorException: The choice of Java
...
1
vote
1answer
75 views
Java + scripting engines: differences between JSR223 + similar alternatives
I've started to run into some really annoying problems using JSR223's interfaces to Rhino:
poor exception information (see my other SO question)
inability to use ScriptableObject (it would be nice ...
1
vote
1answer
75 views
JSR223 and its Cryptic exceptions
Is there a way to get better error messages from JSR 223? I'm trying to use it to run Groovy scripts and whenever there is a problem in the execution, I get exceptions that are truly crypic. Here is ...
1
vote
3answers
509 views
Get data back from Jython scripts using JSR-223
I am using Jython 2.5.1 with JSR-223 (i.e. javax.script package) and I expect the last line of the Python script to be returned. For example, after evaluating this script:
class Multiplier:
def ...
0
votes
1answer
35 views
Why engine instanceof GroovyScriptEngineImpl ?
in groovy while getting the ScriptEngine using java6 feature, for groovy it gives me instance "GroovyScriptEngineImpl" which a type of class not an interface, is there any other way to get the ...
0
votes
1answer
42 views
How to access Java exception that causes ScriptException using JSR-223
I'm executing Javascripts using the JSR-223 script engine built into JRE6. The Javascripts are able to access Java code and objects. When an exception is thrown from the Java code that is executed ...
0
votes
1answer
34 views
Identify already executing scripts - JSR 223
I'm looking at using JSR 223 to provide Jython scripting in an application. I'm slightly afraid of someone writing infinite loops that eventually require a restart of the entire web-application. ...
0
votes
2answers
66 views
JSR-223 - Where to find ScriptServlet?
I'm confused as to where exactly I should find com.sun.script.http.ScriptServlet that I've seen in numerous samples across the web.
Is JSR-223 included in JDK 1.6? I've seen people talk about a ...
0
votes
3answers
34 views
Java Scripting (JSR223) = Bean/Script Shells for templating?
I have not yet used any "java scripting" (JSR223) and my question is related to linux (and windows).
Is there an easy way (after installing the scripting language and java) to do the following:
...
0
votes
1answer
295 views
interoperation between Rhino and Java via JSR223: working with Javascript Object instances
This is very similar to this other SO question about arrays.
If I evaluate:
y = {a: 1, b: 2, "momomomo": function() { return "hi"; }, zz: "wham"}
in a Javascript script instantiated via JSR223 ...
0
votes
0answers
41 views
JSR223 + ScriptException + line number
Just a subtle question about JSR223 (scripting in Java). Where does it define that ScriptException.getLineNumber() returns a line number starting from 1, but a column number starting from 0? I don't ...
0
votes
3answers
109 views
User inputed formula parsing (eval)
Good day all,
I am trying to figure out how to allow users to call a method on some specified data.
I would like to provide a predefined set of functions:
Moving average, moving_ave(x,5) ..would ...
0
votes
2answers
77 views
Cannot load JRubyEngine because org.apache.bsf.util.BSFEngineImpl not found
I'm trying to use JRuby in a custom application, and I don't seem to be able to load the JRubyEngine object. My class looks like functionally similar to this:
public class ScriptEngine {
private ...