New Post: Potential Stackoverflow on Azure Web Apps
Hello, The error message you're seeing indicates the following:Script execution ended prematurely due to an uncaught script exception. Converting the thrown object to a string yielded an empty string....
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
Hi Thanks for the prompt reply. We used to get the error occurring in various execution paths but after upgrades and refinements (such as tuning the reuse of runtimes and engines, invoking garbage...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
Hi James, Interesting. Are you saying that the JavaScript expression above is somehow responsible for the issues you're seeing? In any case, try..catch might be a low-cost way to diagnose the problem....
View ArticleCreated Unassigned: [Feature] Support for .Net CoreClr [99]
I'm not sure how feasible this is considering dependencies like V8 but it would be great to have even partial support for [.Net CoreClr](https://github.com/dotnet/coreclr)
View ArticleEdited Unassigned: [FEATURE] Support for .Net CoreClr [99]
I'm not sure how feasible this is considering dependencies like V8 but it would be great to have even partial support for [.Net CoreClr](https://github.com/dotnet/coreclr)
View ArticleEdited Feature: [FEATURE] Support for .Net CoreClr [99]
I'm not sure how feasible this is considering dependencies like V8 but it would be great to have even partial support for [.Net CoreClr](https://github.com/dotnet/coreclr)
View ArticleEdited Feature: [FEATURE] Support for .Net CoreClr [99]
I'm not sure how feasible this is considering dependencies like V8 but it would be great to have even partial support for [.Net CoreClr](https://github.com/dotnet/coreclr)
View ArticleNew Post: convert arguments to c# array?
hi, how can i convert the js arguments object to an c# array?
View ArticleNew Post: convert arguments to c# array?
Hi furesoft, Here's a sample that sets up a script-callable function for converting any array-like JavaScript object to a .NET array: engine.Script.toClrArray = new Func<dynamic, object>(obj...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
A quick related question - what happens if I dispose a V8Runtime instance then still try to use a V8Engine instance that was created from that runtime (then dispose it)? Could this scenario cause the...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
Hi James, This scenario should be fine; that is, it shouldn't cause any issues. An active V8ScriptEngine maintains a strong reference to its associated (unmanaged) V8 runtime. Note that a script object...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
Many many thanks - I checked and i wasn't disposing of the compiled script objects that each Runtime had compiled so am now explicitly disposing of them :) So if the last V8Engine spawned from a...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
So if the last V8Engine spawned from a managed runtime is disposed after the managed runtime has already been disposed, will the unmanaged runtime instance be destroyed/deallocated? Yes, it should....
View ArticleNew Post: Object is not a function error
Hi, I Am trying to use global objects member within event handler, when event fired it throws exception "obj.PROCESSFAX is not a function". code isvar obj=new FaxProcessor.FaxProcess.Main(); var...
View ArticleNew Post: Object is not a function error
Hello Praveen, Given the code above, your event handler's obj parameter hides the global object with the same name. Could that be the problem? Thanks!
View ArticleNew Post: MSVCR.dll is missing from your computer
What are the Visual C++ Redistributable Packages expectations? Is it a pre-requisite for all Apps that use ClearScript? Our SDK (Class library developed using Visual Studio 2013) that references...
View ArticleNew Post: MSVCR.dll is missing from your computer
Hello! Only ClearScript's V8 interface uses the Visual C++ libraries, so you don't need them if you're using JScript or VBScript. Since these libraries are available as free downloads, you can either...
View ArticleNew Post: Potential Stackoverflow on Azure Web Apps
Hi there Thanks for that insight - that should mean that even under high load where we will spawn additional runtimes and engines we shouldn't have any zombie instances left lying around after...
View ArticleCreated Unassigned: Cannot create a file when that file already exists [100]
Clearscript 5.3.11.0 return error "Cannot create a file when that file already exists".My project is an Windows application in C#, framework 4.5.In the application each 1/2 seconds is called...
View ArticleCommented Unassigned: Cannot create a file when that file already exists [100]
Clearscript 5.3.11.0 return error "Cannot create a file when that file already exists".My project is an Windows application in C#, framework 4.5.In the application each 1/2 seconds is called...
View Article