Could not load file or assembly 'Noesis.Javascript.dll'

3

I am trying to run java Script code in Asp.net using Noesis.Javascript.dll, but I faced Following error msg so any one can help me to resolve this issues.

{"Could not load file or assembly 'Noesis.Javascript.dll' or one of its dependencies. The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail. (Exception from HRESULT: 0x800736B1)":"Noesis.Javascript.dll"}

Thanks

javascript
asp.net
windows
c#-3.0
asked on Stack Overflow Jun 28, 2012 by Gaurav Agrawal • edited Jun 28, 2012 by Rup

2 Answers

5

I had this error during runtime, and when I used sxstrace.exe to get a more informative error message dump, it turned out that Noesis.Javascript.dll wanted an exact version of the C++ Redistributable Package, Microsoft.VC90.CRT.dll, namely version 9.0.30729.6161 I got the right version at http://www.microsoft.com/en-us/download/details.aspx?id=26368

But do learn to use SxSTrace to see if that is your exact issue. An okay introduction to using the tool is here http://blogs.msdn.com/b/junfeng/archive/2006/04/14/576314.aspx

answered on Stack Overflow Aug 13, 2012 by East of Nowhere
4

In our case (using version 0.7 of the library), we had to install the 2010 version of the C++ Redistributable:

x64: http://www.microsoft.com/en-us/download/confirmation.aspx?id=14632

answered on Stack Overflow Oct 16, 2012 by Yosoyadri

User contributions licensed under CC BY-SA 3.0