Mozilla Rhino is a JavaScript interpreter written in Java.

learn more… | top users | synonyms

1
vote
1answer
21 views

Do I need to cleanup Rhino ScriptableObject instances?

I am using Rhino in a project, which requires that I create a number of ScriptableObjects, which are used for a short time, and then discarded. Will doing this create a memory leak? The code is ...
0
votes
1answer
23 views

Including external jar files to resource path in Rhino shell

I am using javascript on a Rhino Shell. I need to add the com.sun.jna.jar to the classpath. Now when I type - js:> Packages.com.sun.jna.NativeLibrary [JavaClass com.sun.jna.NativeLibrary] This shows ...
1
vote
0answers
17 views

IDE for Java + Rhino with debugging and profiling facility for js scripts using custom js libraries and the complete JCL?

I have a Java application that extensively uses javascripting to let us quickly configure its different modules in different ways. Internally the scripts are simply compiled by Rhino, and can use any ...
0
votes
0answers
32 views

How to use JNA code in Rhino javascript

How to use JNA coding in the Rhino javascript engine? I need to pass arguments from Javascript (Rhino shell) to a c function, and the C function shall return the result to the Javascript.
0
votes
0answers
14 views

Javascript calling a code written in C

I need Javascript to access some variables from an Excel file. I am using the Rhino shell for that. But the calculations on the variables must be done by a C program- because that part has already ...
0
votes
0answers
14 views

Rhino is not displaying object contents

I am working on some project in which following things are used: Rhino.jar Apache Ant jslint.js I am trying to print the object content using print(object) in jslint.js file but it is showing me ...
0
votes
0answers
13 views

Bongo and Flamingo Nxt for Rhino 4 Sr9

I can not use renders from Flamingo Nxt to make an animation with Bongo. When i have to choose final render, i do not have the option for Flamingo Nxt. What can i do? Thanks! PD: Sorry for my ...
0
votes
0answers
6 views

Passing .csslintrc file as option to cssline.js throught command line

I am working on some project where i am using csslint.js file with combination with rhino. I want to use csslint options on command line argument and i want to do this using .csslintrc file as ...
1
vote
0answers
40 views

Tools and tips on migrating a large user-defined JavaScript codebase?

I help develop and manage software in which (among other things) users can provide their own JavaScript scripts to run macros and the like. We're using Mozilla Rhino in a Java context. We have quite a ...
1
vote
1answer
40 views

How to get Javascript array result into Java?

I want to use ScriptEngine of Java but I have some trouble with javascript split function like below: ScriptEngineManager manager = new ScriptEngineManager(); ScriptEngine engine = ...
0
votes
1answer
33 views

Spring scheduler tasks causes memory leak in tomcat

I have used spring scheduler to run methods using a cron timer as shown below . The application has atleast 50 scheduler beans of the same class mentioned in bold below. We create new beans by passing ...
0
votes
1answer
35 views

activity/task based authorisation

Rhino security seems to offer a nice way to perform task/activity based authorization. This is some example code: bool isAllowed = authorizationService.IsAllowed(userXYZ, "/Messages/Change"); It ...
2
votes
1answer
61 views

Using JavaFX from JavaScript through the JavaScripting API (Rhino)

I am experimenting with using JavaFX 2 from JavaScript through the JavaScripting API (Rhino). Note: This is a rich-client question, nothing to do with web-programming. I would like to orchestrate ...
0
votes
1answer
46 views

htmlunit javascript performance

I made a performance test of htmlunit against selenium with firefoxdriver and firefox 21. The performance test was made on my windows7 machine through Eclipse. When both have javascript disabled, the ...
0
votes
0answers
20 views

JSON/Javascript object type setters for java object in Rhino

I pass a java object to a rhino javascript implementation function. new Object() { doSomething: function(aPerson, context) { var ctx = context; //A java context variable or helper ...
-1
votes
0answers
28 views

Auto create CSS from list of fonts, then compile each to individual SWF

I am new to PowerShell and other executables, and I am wondering how I would do the following: We have 500+ fonts that I need to create CSS files for individually and then compile that CSS into ...
0
votes
0answers
27 views

GPL v 3 & Scripts [closed]

I'm not asking for legal advice; just some rough guidance. I have a host application in Java that uses the Rhino JS engine to execute JavaScript. That JavaScript can then make calls into other Java ...
-2
votes
0answers
63 views

Change names of variables in javascript using rhino

I am trying to create a very simple JavaScript obfuscator. Can someone give me examples of changing variable name and altering the code using rhino? If I have some code like this: x = 2 if(x>1) z ...
2
votes
1answer
49 views

Rhino: Access Java interface variables in Javascript implementation

Rhino: How to access Java interface variables in Javascript implementation? I expose a java interface for some other party to let them provide an implementation for the same in javascript. public ...
1
vote
1answer
30 views

Java Scripting (jsr223): is it possible to (re)add the rhino compile feature

Oracle incuded a stripped rhino in jdk6 One of the stripped features is the rhino js to bytecode compiler Is it possible to include it at application level? Id like to increase the performance ...
0
votes
0answers
12 views

record action rhinoscript? similar to photoshop

I'm learning some python script at the moment, very new to it. I am having some trouble with the overall syntax I have read the Python for rhino 5 manual but it seems to take me a lot of trial and ...
0
votes
1answer
55 views

Running JavaScript within a Service in Android

I have business logic that is written in JavaScript, this code is shared with other non-android apps. What is the best way to use the functions in this piece of JavaScript from within a Service in ...
0
votes
0answers
49 views

How to get the style content from html file?

I have 1 html file with internal styles defined within head. I am using Rhino and reading this file using readFile(welcome.html) I want to get all the contents between ... tags and have to write in ...
0
votes
2answers
57 views

using Rhino, I've got a “ReferenceError” exception

I've got an error using Rhino(17R4). My Goal is indent a javascript source code using jsbeautifier.js. here's my code: import java.io.InputStream; import org.mozilla.javascript.Context; import ...
1
vote
1answer
53 views

Instantiating an abstract class in Rhino interpreter in Java Scripting

I am using javax.script.* with Rhino for scripting in a Java program. A script can implement an interface just fine, but when I try to use similar syntax to instantiate an abstract class(giving the ...
0
votes
1answer
18 views

csslint cli running in rhino gets stuck (win7)

I am trying to get the csslint - cli ( https://github.com/stubbornella/csslint ) to run on my system (windows 7). After typing in java -jar rhino\js.jar csslint-rhino.js styles.css and hitting enter ...
1
vote
1answer
13 views

CSSlint 'overqualified' error with unknown tokens ''

For some reason when I run Css lint with Rhino I get the following errors: I'm working with: Windows server Server 2008 Visual Studio 2012 (MVC 4) Java version "1.7.0_21" rhino version 1_6R7 ...
1
vote
0answers
40 views

Cannot compile javascript files in NetBeans using Rhino

My goal is to create a project (don't know yet if it has to be html5 or java project) in netbeans, add js file with any line of code and then press compile it and run. I wuld like to have my js files ...
0
votes
0answers
41 views

Can I use Xtext for a DSL containing javascript?

I am looking at using Xtext to create an eclipse plugin for a custom language. This language is xml-like for the most part, however javascript can also be using within script tags- see below for ...
1
vote
1answer
151 views

Call javascript(jQuery/Envjs) from java code

I am trying to execute Javascript code from Java. Javascript code uses jquery so I prepend the jquery.js before my code. But it throws following exception, Exception in thread "main" ...
1
vote
1answer
40 views

What does Rhino accept as valid names for object properties?

I am trying to process the data from a NativeObject, but I have found a small issue with the naming of the object properties. The JavaScript code for the object is: var mainObject = { ...
1
vote
1answer
27 views

Rhino: Retrieving the Line No and Column No

I am running my own proxy objects which extend org.mozilla.javascript.ScriptableObject. I also have my own functions which extend org.mozilla.javascript.Function. My desire is to have any exceptions ...
1
vote
0answers
34 views

Batik/Rhino JavaScript support?

Just want to get a sanity check on this before wasting too much time - does Batik actually have usable JavaScript support in its SVG display and rasteriser? Problem: I've got code which generates SVG ...
0
votes
1answer
44 views

How to stub a function and define equality comparer for a Reference Type parameter

I basically want to stub a function, but define my own equality comparer for a Reference Type parameter. I want to stub a function to return data. I want the parameter of the method to compare by a ...
0
votes
1answer
70 views

Rhino and envjs: share Javascript objects with Java application

I'm using rhino and envjs embedded in my java application as described in the envjs guide Java code: import org.mozilla.javascript.Context; import org.mozilla.javascript.ContextFactory; import ...
1
vote
1answer
48 views

Dojo not getting loaded into rhino emmbedded in java

I'm trying to render the dojo charts server side. I came across the Rhino and envjs for server side browser emulation. when I tried to an example program to load the dojo.js in the rhino embedded in ...
0
votes
0answers
24 views

Getting EvaluatorException in an ANT script

I have a target in my build.xml that looks like this: <target name="-ValidateManifest" depends="init"> <echo message="Validating manifest from ${load.file}"/> <script ...
2
votes
1answer
41 views

How to write “AstRoot” object to a file including comments using Rhino?

I've already parsed javascript source using Rhino and reconstructed it successfully. and when I call astroot.toSource(), it shows to me reconstructed source well. but .toSource() method can't prints ...
0
votes
0answers
24 views

Orientdb javascript functions import external js libraries

I was wondering if it were possibile to load external javascript libraries ( require()? load()?) from within a orientdb javascript server function. Rhino should support it, right? Any help ...
0
votes
1answer
71 views

mocking database objects with Rhino mock

I am sorry if this question is already been asked. I am very new to Unit Testing and I am suppose to use Rhino for mocking. So the problem is...I have a method to test and that method is suppose to ...
2
votes
2answers
204 views

How do I wrap a call to a Google Apps Script function that accepts unlimited arguments

Some Google Apps Script functions like Logger.log() and Utility.formatString() accept unlimited arguments. I would like to wrap a call to Logger.log() or Utility.formatString() so that in the ...
1
vote
0answers
133 views

Generate JQPlot charts in Server

We are using JQplot for generating charts and so far everything has worked like a charm. However we are facing a blocking issue. As per the user requirements, we need to display all charts in form ...
0
votes
1answer
56 views

Mozilla Rhino NativeArray.add() is throwing an error - always

I'm looking for build a javascript array in java using mozilla rhino NativeArray class, however when I try to add elements to NativeArray a java.lang.UnsupportedOperationException is thrown. here is ...
0
votes
1answer
258 views

Insert multiple rows - java prepared statement failing

--SOLVED--Turned out to be a problem with our Shareplow install--Thanks for the tries guys-- Per the answer on Performance of MySQL Insert statements in Java: Batch mode prepared statements vs single ...
0
votes
1answer
33 views

Mozilla Rhino Character Encoding

Can somebody describe how to specify character encodings properly in JavaScript Rhino for me please? I am reasonably familiar with sorting out encoding issues between a Java application and the ...
2
votes
1answer
46 views

in Rhino, can I enumerate the list of available Java packages? How?

I tried doing this: var r = {}; for (p in Packages) { if (Packages.hasOwnProperty(p)) { r[p] = p.toString(); } } ...But I got an error: TypeError: Invalid iterator value ... at line xx ...
1
vote
3answers
121 views

List built in Javascript standard object methods

Is there a way to list all javascript standard object method? I mean I'm trying to get all the built in methods of String so I was thinking and I did tried doing this: for( var method in String ){ ...
1
vote
1answer
107 views

AMD Optimizer (r.js) doesn't produce any output

Disclaimer: I'm a total AMD n00b. I have a project that I'm trying to convert over to AMD. Originally, all the code was in a single file. I was able to split functional units into their own modules, ...
0
votes
1answer
152 views

Rhino setting a NativeObject property in java

I have a javascript script which when evaluated returns a NativeObject obj = context.evaluateString(scope,"({age:3, name:'bob'})", "<source">, 1, null) I then cast obj as either a ...
1
vote
1answer
245 views

Using Rhino's Javascript parser, how to get the comments?

I have some javascript files and parse it using Rhino's javascript parser. but I can't get the comments. How can I get the comments? here's a part of my code. run this code, "comment" variable has ...

1 2 3 4 5 11