Tagged Questions
A scripting API consists of interfaces and classes that define Java Scripting Engines and provides a framework for their use in Java applications.
6
votes
2answers
562 views
How do I secure scripts run using javax.scripting?
I am using javax.scripting to add support for running arbitrary user-uploaded JavaScripts on the server-side. Obviously I want to secure those scripts!
Rhino, on it's own, has a framework for ...
5
votes
1answer
497 views
Rhino load() function available in JavaScript provided by javax.script?
Some JavaScript files that have been developed for Rhino's shell use load() to load additional JavaScript files. I'm attempting to embed functionality from one of these Rhino JavaScript files using ...
5
votes
2answers
3k views
Calling Python from Java through scripting engine (jython)?
I'm trying to call Jython from a Java 6 application using javax.script:
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
public class ...
3
votes
2answers
170 views
Can you extend Abstract Java Classes from JavaScript?
I'm working on a project that makes really heavy use of the javax.script.* packages. I have a situation where I would like to create JavaScript objects that extend an Abstract Java Class, much like ...
3
votes
4answers
1k views
Java 6: Examples for implementing own scripting language using javax.script?
I really can't find good examples for implementing own scripting language using
javax.script ...
I need just something to start.
Documentations
Examples
Tutorials
Videos
Presentations slides (PDF)
...
2
votes
1answer
131 views
Import a class in Scripting java (javax.script)
I want to import a class that I made in my project, into my script
I did this but it doesn't work:
function doFunction(){
//Objectif Mensuel
importPackage(java.lang);
...
2
votes
3answers
1k views
Can I create a 'window' object for javascript running in the Java6 Rhino Script Engine
I want to run some Javascript on my Java6 server - i.e. using the javax.script API, specifically the Rhino Script Engine. (Although another solution would be acceptable)
The script file is created ...
1
vote
1answer
37 views
TypeError: Cannot find function getElementById in object
I am doing automation scripting and I need to read data from an iframe (to validate the content). In my java code
ScriptEngineManager scriptEngineManager = new ScriptEngineManager();
ScriptEngine ...
1
vote
1answer
128 views
Efficient way to run multiple scripts using javax.script
I am developing a game where I'd like to have multiple scripts that all implement the same structure. Each script would need to be run in its own scope so that code doesn't overlap other scripts. For ...
1
vote
2answers
582 views
How to start a program via JavaScript from within a Java Application?
i have a little problem with starting a JavaScript (-file) from within a Java Application. I know the Application is startable through a simple Script if i put it into a sample.js. The actual call is ...
1
vote
1answer
320 views
sqlite3 module for Jython
I'm using Java Scripting API to execute some external Python scripts from my Java application. The python scripts use sqlite3 module. Execution of the application is resulting in error
ImportError: ...
1
vote
1answer
195 views
How can I specify my own Rhino context in Java?
I'm trying to ensure that my Rhino scripts (running under Java 6) are strict so that if a script developer misspells an expression I want an exception to be thrown. Currently what happens is the ...
1
vote
1answer
457 views
javax script how to call a function in JavaScript from Java
I'm trying to call a function in JavaScript via Java. This works fine when directly reading a script as a string but I'm using CompiledScripts.
When I do this with a compiled script it gives me ...
1
vote
2answers
1k views
Using the javax.script package for javascript with an external src attribute
Say I have some javascript that if run in a browser would be typed like this...
<script type="text/javascript"
src="http://someplace.net/stuff.ashx"></script>
<script ...
0
votes
4answers
64 views
Converting a Javascript array to a Java array
I'm trying to convert a Javascript array in Java to a Java array. I'm using the javax.script package.
I tested this example here, but the type "NativeArray" was not recognized: ...
0
votes
0answers
150 views
How do I call a method from Java's ScriptEngine(javascript) staticly, with type parameters?
I am loading a class from a jarfile at runtime (because the script won't always use that exact jar), so I have a Class object of it. I am also doing that from javax.script.ScriptEngine (javascript). ...
0
votes
2answers
318 views
Felix doesn't like javax.script
I'm writing an OSGI bundle using the javax.script package and am having some issues getting Felix to load the package correctly. When attempting to start the bundle, I'm getting:
Failed bundle start ...
0
votes
1answer
638 views
Using javax.script or Rhino to run javascript in Java with browser context (e.g. envjs)?
I am trying to run Protovis javascript from a Java program using javax.script:
ScriptEngineManager factory = new ScriptEngineManager();
ScriptEngine engine = factory.getEngineByName("JavaScript");
...
0
votes
1answer
353 views
Loading a javascript library in javax.script?
I want to run Protovis javascript from Java and get the evaluated SVG code. I am using javax.script.* to run the Javascript:
public static void EvalScript() throws Exception {
...