Tagged Questions
6
votes
2answers
585 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
525 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 ...
3
votes
2answers
176 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
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
65 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
2answers
612 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
207 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
494 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
78 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
158 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
1answer
645 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
362 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 {
...