vote up 6 vote down star
5

Since MS appears to have killed Managed JavaScript in the latest DLR for both server-side (ASP.NET Futures) and client-side (Silverlight), has anyone successfully used non-obsolete APIs to allow scripting of their application objects with JScript.NET and/or can explain how to do so? A Mono/JScript solution might also be acceptable, if it is stable and meets the requriements below.

We are interested in upgrading off of a script host which uses the Microsoft JScript engine and ActiveScript APIs to something with more performance and easier extensibility. We have over 16,000 server-side scripts weighing in at over 42MB of source, so rewriting into another scripting language is out of the question.

Our specific requirements are:

  • Noteably better performance than the Microsoft JScript (ActiveScript) engine
    • Better runtime performance and/or
    • Retention of pre-parsed or compiled scripts (don't reparse on every run)
    • Lower or equal memory consumption
  • Full ECMA-262 ECMAScript compatibility
    • a little porting can be tolerated
  • Injection of custom objects into the script namespace
    • .NET objects (not a hard requirement)
    • COM objects or COM objects wrapped in .NET
  • Instantiation of COM objects from Script
    • à la "new ActiveXObject(progid)"
    • Low priority given the preceeding
  • Include files
    • Pre-loading of "helper scripts" into a script execution context
    • An "include" function or statement (easy to create, given the above)
  • Support for code at global-scope
    • Execution of code the global scope
    • Retention of values initialized at global scope
    • Extraction of values from the global scope
    • Injection and replacement of values at the global scope
  • Calling of script-defined functions
    • with parameters
    • and with access to the previously initialized global scope
  • Source-level debugging
  • Commercial or Open Source Support
  • Non-obsolete APIs
flag

50% accept rate
1  
Will Microsoft still support Managed JScript in Silverlight? – Nosredna Jun 2 at 0:55
1  
Nope, gone from Silverlight, too. See this answer: stackoverflow.com/questions/775339/… – James Hugard Jun 2 at 3:51
1  
That's pretty shocking. – Nosredna Jun 2 at 3:54
Considering adding ActiveXObject support to Google's V8 engine, having done some work in the past binding C++ to COM via TypeLib information. Will post an answer if this proves viable. – James Hugard Jun 17 at 15:23

2 Answers

vote up 1 vote down

Sooner or later, I imagine someone will write a DLR Javascript. I know that's not very convenient for you right now, but maybe you could start the project. I suspect it would have a better cost/benefit analysis to using JScript.NET.

link|flag
vote up 0 vote down

If moving away from .NET and Microsoft is ok for you then you should try Mozilla's Rhino. It is an open-source implementation of JavaScript written entirely in Java. Alot of modern server side js libraries target this platform.

link|flag
@thatismatt - Have you used Rhino with a Java to COM bridge? Can you comment on performance, ease of integration with C++ code, etc.? – James Hugard Jun 17 at 15:20
I'm afraid not, sorry I'm not much help, let me know how you get on though! – thatismatt Jun 17 at 16:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.