Re: [IronPython] how to generate multiple concurrent scriptignengines?

2011-04-27 Thread surangika ranathunga
Auftrag von surangika ranathunga Gesendet: Dienstag, 19. April 2011 04:28 An: Discussion of IronPython; Jeff Hardy Betreff: Re: [IronPython] how to generate multiple concurrent scriptignengines?  Hi,Sorry I missed the posts on this thread. This is the code that caused me the problem (I posted

[IronPython] need help to build Ironpython

2011-04-21 Thread surangika ranathunga
Hi All, I have downloaded Ironpython source code using subversion, from the url https://IronPython.svn.codeplex.com/svn (hope this is a stable version to build ironpython dlls to be used in other projects). Then I located IronPython.sln inside IronPython_Main\Solutions folder and opened this

Re: [IronPython] how to generate multiple concurrent scriptign engines?

2011-04-18 Thread surangika ranathunga
) { Console.WriteLine(e.ToString()); }     --- On Thu, 14/4/11, Jeff Hardy jdha...@gmail.com wrote: From: Jeff Hardy jdha...@gmail.com Subject: Re: [IronPython] how to generate multiple concurrent scriptign engines? To: Discussion of IronPython users@lists.ironpython.com Cc: surangika ranathunga lady_ra

[IronPython] how to generate multiple concurrent scriptign engines?

2011-04-14 Thread surangika ranathunga
Hi, I am using Ironpython to connect to a legacy python code from C#. I am not fully familiar with Ironpython, but managed to get it working for a single-threaded application. This is how I implemented this:     ScriptEngine engine = Python.CreateEngine();    

Re: [IronPython] how to generate multiple concurrent scriptign engines?

2011-04-14 Thread surangika ranathunga
scriptign engines? To: Discussion of IronPython users@lists.ironpython.com Cc: surangika ranathunga lady_ra...@yahoo.com Received: Thursday, 14 April, 2011, 7:35 AM As long as you have a ScriptScope per thread, you should be able to share the ScriptEngine Runtime between threads. What