New Post: Using ClearScript. WebApplication problem
andrea_schirru, thanks so much for the suggestion. i put in the code and updated your /Dependencies path to my /bin/ClearScript.V8 path. after this implementing this, i first got the versioning error....
View ArticleNew Post: Manage code problem
Hello, I have recently upgraded my project from Javascript.Net to ClearScript with V8. Currently, when I'm running the webdev server I fairly frequently get this error: The program '[6484]...
View ArticleNew Post: Using ClearScript. WebApplication problem
hello again, everyone. it's time for me to admit to a n00b mistake.C++ redistributable wasn't installed. (as is mentioned several times in this post) it needed both the x64 and x86 version of the...
View ArticleNew Post: Using ClearScript. WebApplication problem
Hi brad, In case you missed it, if Visual Studio is not installed on your deployment machine, you must install 32-bit and 64-bit Visual C++ Redistributable packages:Visual C++ Redistributable for...
View ArticleNew Post: Manage code problem
Greetings Scott! Hmm, we don't have much to go on here, so all we can offer is some clarification:Unless you've built it from modified source code, ClearScript.dll is architecture-neutral and can be...
View ArticleNew Post: Manage code problem
Hi, That's interesting about ClearScript.dll. I'm not sure I follow that it can be either, When I run a dll diagnostic on it it says it's a 32 bit one. However, it's not that bit of a deal, I just have...
View ArticleNew Post: Manage code problem
Hi again! It's great to hear that you've found a resolution! As for ClearScript.dll, .NET libraries can be built to target the so-called AnyCPU platform (please see here), which just means that the...
View ArticleSource code checked in, #5f66ce585a04c97dd9c75370651bd940fe74d659
Bypassed reflection for Windows script item property and method access, fixing Issue #47.
View ArticleEdited Issue: [FIXED] Windows script engines leak host objects exposed via...
This issue was reported [here](https://clearscript.codeplex.com/discussions/545913). An initial investigation points at a bug in the Windows script runtime. A workaround may be to force the engine to...
View ArticleCommented Issue: [FIXED] Windows script engines leak host objects exposed via...
This issue was reported [here](https://clearscript.codeplex.com/discussions/545913). An initial investigation points at a bug in the Windows script runtime. A workaround may be to force the engine to...
View ArticleNew Post: Scripting like Boo
Hello, Can you implement the Scripting language visual Boo?
View ArticleNew Post: Memory leak
I tried your fix and all works as expected. Great work. Thanks again.
View ArticleNew Post: Scripting like Boo
Hi furesoft, We don't have Boo on our radar at the moment (we have lots of existing issues to take care of first) but it certainly looks like a well-designed, modern language suitable for both...
View ArticleNew Post: Memory leak
Thanks for verifying the fix, and thanks again for reporting this issue!
View ArticleNew Post: Problem with nullable property of object
Hi, Small bug with the new MarshalNullAsDispatch option. String property in case of null value should always return the DBNull value instead of DispatchWrapper(null). Following code does not work...
View ArticleNew Post: How to get the console.log("let's log something") messages after...
Hello! At first, thank you for your work, ClearScript is awesome. My question is: how to get the console.log("") messages after executing the js file? I created a host object and basically substituted...
View ArticleNew Post: Problem with nullable property of object
Hi ifle, It looks like the code above fails because this line:getName = person.Name can't handle the case where person.Name returns nothing, and that's because nothing is a special object reference...
View ArticleNew Post: How to get the console.log("let's log something") messages after...
Hello boli, First, thanks for your positive feedback! Regarding your question, the console object is not part of the JavaScript standard; it's part of the Web API. A ClearScript JavaScript engine by...
View Article