Re: [Ironpython-users] Debugging with CLR in Web App

2013-02-13 Thread John Davidson
Some more followup detail. I added the Frames and FullFrames option to the engine creation. This allows me to now get the full stack trace into the IronPython.dll The process is hanging in IronPython.dll!IronPython.Runtime.Operations.PythonTypeOps.GetBuiltinFunction(System.Type type = {Na

Re: [Ironpython-users] Debugging with CLR in Web App

2013-02-13 Thread John Davidson
Thank you for the response. There is no error when running in the debugger. The process just hangs at the line "source.Execute(scope)". When I do a manual break in the debugger the error I get is "Cannot evaluate expression because a native frame is on top of the call stack". The information retur

Re: [Ironpython-users] need assistance with IronClad project

2013-02-13 Thread Slide
Can you be more descriptive as to issues you are seeing, what is going wrong, what results you are getting vs. what you are expecting? Just throwing a project out there and expecting people to look at it will probably not get you a great amount of help. slide On Wed, Feb 13, 2013 at 1:43 PM, Wil

[Ironpython-users] need assistance with IronClad project

2013-02-13 Thread William Johnston
Hello, I created a project that is exactly the same as the IronClad (from Resolver) demo project. Yet, I am getting different results. Can anyone assist me on this? The project files are at: http://tenbase2.com/ironclad%20projects.zip This is my only forum for support. Thank you.

Re: [Ironpython-users] Debugging with CLR in Web App

2013-02-13 Thread Keith Rome
First thing I would check is to make sure it is trying to load the right version of IronPython. If you are deploying the assemblies to your application's bin folder then you will also want to verify that no versions are also loaded in the GAC. Likewise, if your application is using references to

[Ironpython-users] Debugging with CLR in Web App

2013-02-13 Thread John Davidson
I am in the process of creating an MVC 4 based wiki with scripting support for dynamic creation of content. I have chosen IronPython as the embedded scripting host and am developing a DSL for the scripting portion. This DSL is created in C# and exposed to the CLR for scripting using IronPython. Th