Tagged Questions

Javascript interpreter for .NET.

learn more… | top users | synonyms

5
votes
3answers
693 views

Jint + XNA (C#)

Is it possible to use jint to manipulate a 3D environment created with XNA (C#), and to add functionality to this environment (again using jint)?
4
votes
1answer
243 views

Is anyone doing visual debugging with Jint?

I've been using Jint to run server-side JavaScript code and I'm liking it a lot so far. The one issue I'm having is debugging. JInt exposes events that can fire when a statement is executed or a ...
4
votes
1answer
580 views

Is “Jint - Javascript Interpreter for .NET” reliable?

I've seen jint in Codeplex. It looks very interesting. Have you used it? Is 0.8.4 stable and usable in your opinion? (production quality?)
2
votes
3answers
226 views

JNI: converting unsigned int to jint

How do I convert an unsigned int to jint? Do I have to convert it at all, or can I just return it without any special treatment? This is basically my code right now, but I can't test it, as I haven't ...
2
votes
1answer
110 views

predicate serialization

Let's say that I have a bit of .NET code... public class EventEnvelope { public Dictionary<string, string> Headers { get; set; } public byte[] Body { get; set; } } public class ...
1
vote
2answers
42 views

Ldfld problems under Mac OS X / Mono, probably Mono bug

I'm using 3rd party library JInt (the JavaScript interpriter) which was working fine until I've switched to Mac OS X, after that I keep on getting ArgumentNullExceptions, after some investigation I've ...
1
vote
2answers
48 views

assigning a function to a name globally

I need a javascript function f that given another (anonymous) function g and a name n will assign g to that name in the global scope (or at least the current scope). I should be able to use it like ...
1
vote
2answers
155 views

Explain How Jint Works

I would like to understand how Jint, a JavaScript Intrepreter written in C# works. Specifically: How does it makes use of Antlr? Which parts, if any, or this project are novel, and which parts ...
1
vote
2answers
217 views

DynamicObject and Jint

I want to use DynamicObject class under Jint and I have built a sample to do it. First assert is correctly passes but fails at second assert. Is there any way to do it or do you know any other ...
0
votes
1answer
52 views

C# SecurityException when reading text file

I'm writing a c# program (An IRC bot to be specific) and using the scripting library Jint ( http://jint.codeplex.com/ ). I have an external comamnd linked into it that when called reads a .js text ...
0
votes
1answer
38 views

JNI int method returning from exception

Suppose I have a Java class like this: public class Test { static { System.loadLibrary("test"); } public native int foo(); } Suppose that the foo() method is doing some ...
0
votes
2answers
150 views

How do I load a JavaScript file with Jint in C#?

I want to load a JavaScript file using Jint, but I can't seem to figure it out. The documentation said I could do something like engine.run(file1), but it doesn't appear to be loading any files. Do I ...
0
votes
1answer
286 views

execute exe file using Jint - Javascript Interpreter

i have a created one console application and in that i had use Jint - JavaScript Interpreter to run javascript function . but when i use activexobject in javascript it give me a error the code is: ...
0
votes
3answers
649 views

Passing a javascript object to c# in jint

I'm trying to send a javascript object to c# world but i cannot figure out how is done. Here is my javascript code myClass.Do( 'str', { key : 'Testing' } ); And I have tried to these method ...
0
votes
1answer
251 views

How to use jint with XNA to build a game engine?

I want to create a game engine in XNA that has scripting abilities (Jint). How do I go about doing this? (General idea of the direction to proceed - not necessarrily deatils). Thanks Q