Commented Issue: ClearScript hangs application due to aggressive assembly...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleEdited Issue: [FIXED] ClearScript hangs application due to aggressive...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleNew Post: Fetch all the Variables and their values
I am implementing a debugger for Vbscript which is expected to display all the variables and their values upon hitting break point. I am able to fetch all the variables using following code: public...
View ArticleNew Post: Fetch all the Variables and their values
Hello! Unfortunately there's no simple way to enumerate VBScript local variables. However, like most Windows Script engines, VBScript plugs into the Windows debugging infrastructure and therefore...
View ArticleReleased: ClearScript 5.4 (Oct 22, 2014)
5.4.2.1Fixed unnecessary assembly table construction (Issue #84).5.4.2Updated ClearScriptBenchmarks to use SunSpider 1.0.2. Host methods and delegates in V8ScriptEngine now supporttoFunction(), which...
View ArticleUpdated Release: ClearScript 5.4 (Oct 22, 2014)
5.4.2.1Fixed unnecessary assembly table construction (Issue #84).5.4.2Updated ClearScriptBenchmarks to use SunSpider 1.0.2.Host methods and delegates in V8ScriptEngine now support toFunction(), which...
View ArticleEdited Issue: ClearScript hangs application due to aggressive assembly loads...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleCommented Issue: ClearScript hangs application due to aggressive assembly...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleUpdated Wiki: Announcements
6/30/2015: Version 5.4.2.1 released. View the release notes and download the source code here. This is a bug fix release only. 5/10/2015: Version 5.4.2 released. View the release notes and download the...
View ArticleUpdated Wiki: Home
Version 5.4.2.1 released. More...Description ClearScript is a library that makes it easy to add scripting to your .NET applications. It currently supports JavaScript (via V8 and JScript) and...
View ArticleNew Post: Fetch all the Variables and their values
Thanks for the reply. So can you please suggest me a way to have variables in Microsoft Script Debugger and how do i run the script in debug mode? much Thanks!
View ArticleNew Post: Fetch all the Variables and their values
Hi again, You can enable script debugging in your VBScript instances by passing WindowsScriptEngineFlags.EnableDebugging to the VBScriptEngine constructor. You should then be able to attach Visual...
View ArticleCommented Issue: ClearScript hangs application due to aggressive assembly...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleNew Post: Passing DateTime from c# to javascript function
Hi! I want to pass DateTime from C# code to javascript function and use it as javascript Date object my sample code : V8ScriptEngine engine = new V8ScriptEngine(); engine.Execute("function...
View ArticleCommented Issue: Fatal error in heap setup, Allocation failed - process out...
Hi, While investigating some memory related issues in my application, I managed to reproduce what seems to be a problem. The following minimal application terminates on my PC after ~50 cycles and...
View ArticleNew Post: Passing DateTime from c# to javascript function
Greetings! As you've noticed, ClearScript doesn't automatically convert DateTime instances into JavaScript dates; such conversion is lossy and not always desirable. However, because it's often useful,...
View ArticleCommented Issue: ClearScript hangs application due to aggressive assembly...
An application I wrote was using ClearScript successfully locally. However, when I deployed the application to one of our application servers, the application would hang on start up. I captured a dump...
View ArticleNew Post: Passing DateTime from c# to javascript function
Hi! Thank you for the solution, So, suppose that my fonction return javascript Date object, and I want to convert it to DateTime object (c#) : var engine = new V8ScriptEngine(); engine.Execute(@"...
View ArticleNew Post: Passing DateTime from c# to javascript function
Hi again, Your approach uses several calls into script code to convert a single date. That could perform acceptably, but you might get better performance by minimizing the number of trips across the...
View ArticleNew Post: US-CERT: Vulnerability in the V8 JavaScript engine...
There was a recent US-CERT alert in regards to V8 vulnerability found in applications using node.js and io.js, which is followed with updates to those platforms. Brief details of it could be found...
View Article