Reviewed: Javascript .NET v0.7 (Sep 23, 2013)
Rated 5 Stars (out of 5) - It's very easy to use. thx!
View ArticleNew Post: Passing a JSON Object as a parameter
I don't get it, how do you use JSON.parse() ? Like this? string output = HandleBars.Run("Tiraggo", "JSON.parse(" + json + ")"); It doesn't work, I'm totally lost, how could there not be a sample of...
View ArticleNew Post: Passing a JSON Object as a parameter
Uggh !! Here's how folks ... string json = "JSON.parse(" + myjson+ ")"; string output = HandleBars.Run("Tiraggo", json);
View ArticleNew Post: Exception comes while using JavaScript.net in VS2012
I have the same problem, Noesis.Javascript.dll does not work with VS2012 (reliably)
View ArticleNew Post: Simply won't work with VS2012
Warning 1 There was a mismatch between the processor architecture of the project being built "x86" and the processor architecture of the reference "Noesis.Javascript, Version=0.0.0.0, Culture=neutral,...
View ArticleNew Post: Simply won't work with VS2012
What's with the AMD64 stuff, I didn't think that was compatible?
View ArticleNew Post: Simply won't work with VS2012
finally after fiddling with my settings I got everything to work, I use everything in x64, had to create new configuration settings as it as always defaulting to ANYCPU even though you choose x64 on...
View ArticleNew Post: Funtion to Compile the script
Hi , Excellent work and very easy to use . But , Is there a facility to compile the script before and execute the compiled object whenever required . It will really boost the speed of execution.
View ArticleNew Post: Funtion to Compile the script
JavaScriptDotNet provides nothing to separate compilation from execution. I needed this for my own work, so I have added code to my version that does it, but my solution is too specific to be generally...
View ArticleCreated Unassigned: Is there Self Contained Version that doesn't require the...
I'm writing a visual studio add-in and it can't find the msvcp100.dllmsvcr100.dlldlls ...Is there a version of "Noesis.Javascript.dll" that has these contained within? if that's possible
View ArticleNew Post: Is there Self Contained Version that doesn't require the C runtime...
I'm writing a visual studio add-in and it can't find the msvcp100.dll msvcr100.dll dlls ... Is there a version of "Noesis.Javascript.dll" that has these contained within? if that's possible
View ArticleNew Post: Is there Self Contained Version that doesn't require the C runtime...
This is a way for JavaScript.NET to always load the assemblies out of the folder where the Noesis dll is loaded, would solve a lot of issues, we just can't copy over users existing VC++ runtime dlls...
View ArticleClosed Unassigned: Is there Self Contained Version that doesn't require the C...
I'm writing a visual studio add-in and it can't find the msvcp100.dllmsvcr100.dlldlls ...Is there a version of "Noesis.Javascript.dll" that has these contained within? if that's possibleComments:...
View ArticleNew Post: Is there Self Contained Version that doesn't require the C runtime...
No, the DLLs must be external. I cannot remember why.
View ArticleNew Post: Returing .net object
Hi, I have .net class say person namespace Jam{ public class Person{ public string name; public string telephone; } public class PersonDB {public static Person GetRandomPerson() { Person t = new...
View ArticleNew Post: Support for dynamic objects?
@danderson00, thanks for the reference, but those extensions make it so you can access the JSContext in a dynamic way, not so that you can handle javascript member access on C# objects in a dynamic...
View ArticleNew Post: Memory leak
I'm having a problem where I can't get an object passed to javascript to be garbage collected. I've included sample code below. It demonstrates that calling JavascriptContext.Collect and GC.Collect can...
View ArticleNew Post: Memory leak
I don't know why it wouldn't work, but you might want to examine the v8 method that JavascriptContext.Collect() invokes. It's something to do with idleness and I don't know what guarantees it makes...
View ArticleNew Post: Memory leak
Hi Oliver, thanks for the response. I looked at the JavascriptContext.Collect method and it consists of this one line: while(!v8::V8::IdleNotification()) {}; Part of the comments for IdleNotification...
View ArticleNew Post: Memory leak
Hi Ian, I am one of the maintainers, but I am not particularly active - I mainly submit fixes I need. I had forgotten about mExternals, Without having put a lot of thought into it, I think that using...
View Article