Re: [IronPython] Embedding IronPython in ASP.NET/SharePoint2010/Commerce Server

2010-10-10 Thread Dody Gunawinata
I am using similar approach in our business license software that runs the city of Alexandria, Egypt. We have to deal with 350 different type of business licenses with multiple factor for calculating the fees (minimum 5). So we just construct the fees calculation formula in Python script that a bus

Re: [IronPython] Embedding IronPython in ASP.NET/SharePoint2010/Commerce Server

2010-10-03 Thread Jeff Hardy
Hi Charles, The approach I've used for web applications in the past is to have the runtime and engine be application-wide and create a new scope for each script on every request. Scopes are very cheap to create and will keep the scripts isolated so that they don't affect each other. The engine and