Hi,

I have a question on the same subject as the author of the first post.
What should the args array contain when I don't want to pass on any
arguments?
I've tried the following:

Object[] args = null; (NullPointerException)
Object[] args = {}; (division by zero)

As you can see none of those approaches worked. What am I missing?

On Apr 6, 8:33 pm, Mark Storer <[email protected]> wrote:
> ScriptableObject.callMethod( cx, thisObj, functionName, args );
>
>
>
> On Tue, Apr 6, 2010 at 6:51 AM, vittal <[email protected]/> wrote:
> > We are trying to invoke a rhino code from java, our custom code is not able
> > to execute overriden function in script using Java, rhino version is 1.6
> > build 5 and jdk1.6.
> > same  custom code is working with 1.6 build 1, JDK 1.4.X.
>
> > statements using to make a call
> > Object func = ScriptableObject.getProperty(thisObj, functionName);
> > f.call(cx, scope, thisObj, args);
>
> > code is passing through call method of function object but not executing
> > script method, not even throwing exception.
> > what could be reason,
>
> > ---
> > frmsrcurl:http://mozilla-xp.com/mozilla.dev.tech.js-engine.rhino
> > _______________________________________________
> > dev-tech-js-engine-rhino mailing list
> > [email protected]
> >https://lists.mozilla.org/listinfo/dev-tech-js-engine-rhino
>
> --
> --Mark Storer
> Professional Geek

_______________________________________________
dev-tech-js-engine-rhino mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-js-engine-rhino

Reply via email to