Top "Rhino" questions

Mozilla Rhino is a JavaScript interpreter written in Java.

Problems using Rhino on Android

I'm trying to use Mozilla Rhino in my Java application for Android to evaluate some JavaScript. I am using Eclipse + …

java android rhino
What are CAD apps written in, and how are they organized?

What are CAD applications (Rhino, Autocad) of today written in and how are they organized internally ? I gave as an …

language-agnostic rhino backend autocad
Using Rhino and JSR-223 to read a JSON file

I'm trying to read a JSON file with some JavaScript that I'm eval-ing with Rhino through the Java JSR-223 API. …

javascript rhino jsr223
how to run a javascript function asynchronously, without using setTimeout?

its a server side Javascript (rhino engine), so setTimeout is not available. how to run a function asynchronously?

javascript rhino parallel-processing
How can I add an object property to the global object in rhino javascript

I have some properties in an object that I would like to add to the global namespace. In javascript on …

javascript rhino
Using RHINO js engine to make http requests

I'm trying to use the Mozilla/Rhino js engine to test some SOAP requests in the command line. However, none …

javascript rhino
How can I pass a javaScript function to a Java Method to act as a callback (Rhino)

Basically I'm trying to pass a javaScript function to a Java method to act as a callback to the script. …

java javascript rhino
Trying to use Rhino, getEngineByName("JavaScript") returns null in OpenJDK 7

When I run the following piece of code, the engine variable is set to null when I'm using OpenJDK 7 (java-7…

java javascript rhino openjdk javax.script
How can I add methods from a Java class as global functions in Javascript using Rhino?

I have a simple Java class that has some methods: public class Utils { public void deal(String price, int amount) { // .... } …

java javascript rhino
Calling replace on string throws EvaluatorException

I'm trying to adapt this answer to the case of regexp replacement: <scriptdef name="propertyregex" language="javascript"> <…

java javascript regex ant rhino