Tagged Questions

Mozilla Rhino is a JavaScript interpreter written in Java.

learn more… | top users | synonyms

21
votes
4answers
3k views

Differences between Narwhal and Node.js?

I'm new to Node.js and I have been reading about Narwhal that is a framework based on Rhino. My questions: If I'm using Node.js, should/could I use Narwhal and it's libraries/modules? Aren't the ...
13
votes
5answers
4k views

How can you run Javascript using Rhino for Java in a sandbox?

Part of our java application needs to run javascript that is written by non-developers. These non-developers are using javascript for data formatting. (Simple logic and string concatenation mostly). ...
12
votes
3answers
1k views

rhino vs spidermonkey

I noticed ubuntu 10.04 removed the spidermonkey package. Rhino looks like it's still there though. What are the differences between rhino and spidermonkey (besides what language they're written in). ...
11
votes
1answer
216 views

What is the lifecycle and concurrency semantics of Rhino Script Engine

I am interested in the lifecycle and concurrency semantics of (Rhino) Script Engine and associated classes. Specifically: Is Bindings supposed to be thread safe? Should multiple threads be allowed ...
11
votes
4answers
3k views

Javascript Engines Advantages

I am confused about javascript engines right now. I know that V8 was a big deal because it compiled javascript to native code. Then I started reading about Mozilla SpiderMonkey, which from what I ...
11
votes
5answers
4k views

nServiceBus, Rhino Service Bus, MassTransit - Videos, Demos, Learning Resources

Hey people would love to hear about any resources you have or know about for nServiceBus, Rhino Service Bus and MassTransit. Videos? Blog posts? Books? Demo Projects etc
10
votes
2answers
131 views

Interpreting JavaScript in Java with Rhino: pausing/resuming scripts

I'm using the javax.script.* package of the JDK. Specifically, I'm using the JavaScript engine, which, from what I've read, seems to be based on a Mozilla-developed JavaScript-in-Java interpreter ...
10
votes
2answers
1k views

Rhino Mocks - Difference between GenerateStub<T> & GenerateMock<T>

Can any of the Rhino experts explain me by giving a suitable example of the differnce between the above methods on the MockRepository class (Rhino Mocks framework).Where should one use Stub over Mock ...
9
votes
3answers
321 views

Simulating duck typing in Java

The problem: I'd like to be able to generically access in Java any property/field on a Java ojbect similarly to how a dynamic language (think Groovy, JavaScript) would. I won't know at the time I'm ...
9
votes
7answers
2k views

Decent JavaScript IDE [closed]

What is a decent IDE for developing JavaScript, I'll be writing both client side stuff and writing for Rhino. Ideally It needs to run on Mac OSX, although something that runs on Windows too would be ...
8
votes
2answers
155 views

Running unit tests of JavaScript code from XUL - what and how

I am writing an XUL application. It is not a Firefox extension but a standalone app to be used through XULrunner. My intention is to adopt TDD in my development process and I am looking at RhinoUnit ...
8
votes
3answers
3k views

JavaScript (Rhino) use library or include other scripts

In JDK6, is there a way to load multiple scripts, each in a file, and have the one script reference a method of another script? Sort of like "include"?
8
votes
3answers
528 views

What happened to Rhino? Is it still under active development?

The last release was in 2008-03-06. What happened to it? Is it still under active development? Are there any replacements?
7
votes
4answers
465 views

ANT script to compile all (css) LESS files in a dir and subdirs with RHINO

I want do compile all *.less scripts in a specific folder and it subdirs with less-rhino-1.1.3.js. There is an example on github for doing this for a specific file, which works perfect. But I want ...
7
votes
2answers
952 views

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?
6
votes
2answers
261 views

Is Rhino the only interpreter with support for sandboxing and serializable continuations?

I need (a) sandboxing, and (b) serializeable continuations. I'm exposing server-side game scripting to users, and it is extremely async, thus the callback pattern makes code un-readable and very ...
6
votes
3answers
1k views

Is it possible to make Node.js use Rhino as the Javascript engine?

I use Node.js for several jobs on my web apps and so far everthing's ok. But the Node.js uses Google's V8 as the default Javascript engine (JSE) and V8 runs exlusively on the x86 and ARM Instruction ...
6
votes
3answers
628 views

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. I can do it - sort of - but the object I receive is a ...
6
votes
3answers
2k views

Advantages of using Rhino (mozilla's rhino)

I've been reading about Rhino as a useful way to implement JavaScript inside my Java code. After reading for a while, searching in google and here, I couldn't find a real reason for which I would use ...
6
votes
1answer
361 views

How do you return an exit code from Rhino?

I'm using java to run a command line utility written in Rhino but if there is an error I need to return that error back to the shell so processing stops. How do I pass back an error code from Rhino to ...
5
votes
1answer
113 views

Can one/has anyone used Mozilla's Rhino JS engine in a WebKit shell?

I am under the impression that WebKit is a more general framework into which multiple JavaScript engines can be plugged. Most prominently, we have both Apple's JavaScriptCore, and Google's V8. Has ...
5
votes
1answer
161 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
1answer
397 views

How to implement C# Rhino Security

I am trying to implement Rhino Security, i have managed to find a couple tutorials but they do not give enough information to completely understand it, i was wondering if anyone knows of a good source ...
5
votes
1answer
496 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
3answers
954 views

Programatically generate PNG from Raphael.JS image

I'm writing an app that lets users generate images with Raphael.JS. One of the secondary features I want is to generate a PNG of the Raphael canvas. Here's the general pipeline in my head: User ...
5
votes
2answers
1k views

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) { // .... } public void bid(String price, int amount) { ...
5
votes
5answers
597 views

Convert a date to string in Javascript

I'm looking for a way to convert a Javascript Date object to a string. I'm converting my site from Ruby to server side Javascript, and I'm looking for something analogous to strftime in Ruby, C, and ...
5
votes
5answers
762 views

Server side Javascript best practices?

We have a CMS built on Java and it has Mozilla Rhino for the server side JS. At the moment the JS code base is small but growing. Before it is too late and code has become a horrible mess I want to ...
5
votes
3answers
1k views

How to best install Rhino on OSX 10.6 Snow Leopard

I am running OSX 10.6 Snow Leopard, have downloaded rhino1_7R2 and moved it to /usr/local/ I am aware however that (while this would prevent it from being altered by OS updates) this may not be the ...
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];};"); ...
5
votes
1answer
2k views

How to load .js files into a Rhino context in Java

Here is my situation: I have access to a Rhino Context object in a Java class. I want to read in a bunch of .js files and pass them along to the Rhino context to have them evaluated. I'm not really ...
5
votes
4answers
702 views

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 example, Autocad and Rhino, although I would love to hear of other examples as ...
5
votes
2answers
714 views

Rhino: restrict Java packages that can be accessed from JavaScript

When embedding a JavaScript interpreter (Rhino) into a Java application (to be able to script that application), how would one go about restricting the Java packages that are available to scripts? For ...
4
votes
1answer
80 views

Can I forcibly disambiguate overloaded methods called by Rhino?

Take the following test: public static class Scripted { public void setThing(List<?> list) { System.out.println("Set via list"); } public void setThing(Object[] array) { ...
4
votes
2answers
266 views

Are there any tips & tricks for making rhino perform faster? [closed]

Are there any tips & tricks for making rhino perform faster? I'm trying to compress a large js file using uglifyJs in Rhino and it takes more than a minute. Do you have any hints or other ...
4
votes
1answer
445 views

How to invoke Rhino compiled JavaScript methods (class files) in the Java program?

I compiled following JavaScript file, "test.js", into the "test.class" : var test = (function () { var that = {}; that.addNumbers = function (a, b) { return a+b; }; return that; }()); ...
4
votes
1answer
593 views

What's the difference between Java 6's built-in version of Rhino and the Rhino package direct from Mozilla?

I know the APIs are very different, but is there any functional difference between the built-in JavaScript stuff and the Rhino builds obtainable from Mozilla?
4
votes
0answers
143 views

best way to run narwhal under linux

I'm checking out narwhal. It seems pretty cool, and I'm particularly impressed with the tusk package management system. However, since narwhal runs under rhino, the usefulness of this command-line ...
4
votes
1answer
459 views

How to create a 'real' JavaScript array in Rhino

Okay, I'm a little stumped. I'm probably missing something blatantly obvious but apparently I just can't see the forest for the trees: I'm trying to call a JavaScript function that expects its ...
4
votes
2answers
513 views

Rhino, adding code from multiple javascript files

I am embedding some javascript in a Java application using Rhino. I am following the example on the Rhino website, executing a script by calling the Context's evaluateString method and passing the ...
4
votes
3answers
2k views

Has anyone used or written an Ant task to compile (Rhino) JavaScript to Java bytecode?

I'd like to use the Rhino JavaScript compiler to compile some JavaScript to .class bytecode files for use in a project. It seems like this should already exist, since there are groovyc, netrexxc, and ...
3
votes
1answer
127 views

Scripting layer for Android - LibGDX

I've been writing a full game engine on top of LibGDX for sometime now and had written almost every single game object in Javascript (I created a composite based game object system). For the JS ...
3
votes
1answer
99 views

Does RhinoJS support the websockets API?

I have been using Jasmine to write BDD tests for a web app. I am interested in running these same tests from the command line using Rhino, and I found this blog entry which has been very helpful. ...
3
votes
1answer
182 views

Is it possible to set the optimization level for RhinoScriptEngine in Java 6?

I am running into the issue where Rhino throws the "Encountered code generation error while compiling script: generated bytecode for method exceeds 64K limit" exception when running Rhino via the ...
3
votes
2answers
169 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
2answers
147 views

Rhino features beyond the ECMA standard?

I'm starting with JavaScript and the Rhino engine. I know the ECMAScript 262 specification. I need to know what features, e.g. functions/objects/etc are defined by the Rhino JavaScript engine beyond ...
3
votes
3answers
634 views

Rhino and DOM support

Does Rhino have support for using DOM objects?
3
votes
2answers
478 views

sun.org.mozilla Rhino and extending Java abstract classes

In the sun.org.mozilla version of Rhino, JavaAdapter only takes interfaces as its first argument instead of any other kind of class according to this error message: javax.script.ScriptException: ...
3
votes
1answer
239 views

RhinoETL - Join two tables as input, write to two tables on output

I am writing an ETL job, in c#, using Rhino ETL I have a database on ServerA. This has 2 tables: (example) tblOrder OrderID CustomerName CustomerEmailAddress Transferred tblOrderLine ...
3
votes
1answer
168 views

Passing Class<?> parameter using Rhino

I am trying to call a constructor for a custom collection object. This custom object takes in a parameter of type Class. In java, this is done like this: ICollection col = new ...

1 2 3 4 5 7