Hi Charles,<div>The approach I&#39;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&#39;t affect each other.  The engine and runtime are thread-safe, so you can safely get away with only having one per application. I also use a cache of CompiledCode objects for each script to avoid recompiling them each time.</div>
<div><br></div><div>- Jeff</div><div><br><div class="gmail_quote">On Sun, Oct 3, 2010 at 6:15 AM, Medcoff, Charles <span dir="ltr">&lt;<a href="mailto:charles.medcoff@rcmt.com">charles.medcoff@rcmt.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div lang="EN-US" link="blue" vlink="purple"><div><p class="MsoNormal">Hello,</p><p class="MsoNormal"> </p><p class="MsoNormal">
I have a client for which I am developing a SharePoint 2010/Microsoft Commerce Server 2009 applications.  The client has a fairly complex set of business rules for their ordering process which may change frequently.  Rules engines are pretty expensive so I’m considering the approach of embedding Iron Python into the app as an alternative to making it a bit easier to make rules updates via scripting.</p>
<p class="MsoNormal"> </p><p class="MsoNormal">My approach is to launch an Iron Python script from within an Operation Sequence Component (<a href="http://msdn.microsoft.com/en-us/library/dd464335(CS.90).aspx)" target="_blank">http://msdn.microsoft.com/en-us/library/dd464335(CS.90).aspx)</a> which is a standard extensibility point within Commerce Server.  In nutshell an Operation Sequence Component is a .NET assembly containing a class which implements a particular interface, and is loaded via reflection by the Commerce Server runtime.  The class is then loaded/executed when the relevant Commerce Server API is used. </p>
<p class="MsoNormal"> </p><p class="MsoNormal"> I’ve successfully written a simple Operation Sequence Component which executes a script.  The only catch to getting it to work is to register all of the related Iron Python DLL in the GAC.  Here is an example of what I’m doing:</p>
<p class="MsoNormal"> </p><p class="MsoNormal"><span style="font-size:10.0pt;font-family:Consolas;color:blue">namespace</span><span style="font-size:10.0pt;font-family:Consolas"> IPythonOperationalSequenceComponent<br>{<br>
    <span style="color:blue">public</span> <span style="color:blue">class</span> <span style="color:#2B91AF">IronPythonOperationSequenceComponent</span> : Microsoft.Commerce.Providers.Components.<span style="color:#2B91AF">OperationSequenceComponent</span><br>
    {<br>        <span style="color:blue">public</span> <span style="color:blue">override</span> <span style="color:blue">void</span> ExecuteQuery(<br>            Microsoft.Commerce.Contracts.Messages.<span style="color:#2B91AF">CommerceQueryOperation</span> queryOperation, <br>
            Microsoft.Commerce.Broker.<span style="color:#2B91AF">OperationCacheDictionary</span> operationCache, <br>            Microsoft.Commerce.Contracts.Messages.<span style="color:#2B91AF">CommerceQueryOperationResponse</span> response)<br>
        {<br>            <span style="color:blue">try</span><br>            {<br>                <span style="color:#2B91AF">ScriptEngine</span> pyEngine = <span style="color:#2B91AF">Python</span>.CreateEngine();<br>                <span style="color:#2B91AF">ScriptScope</span> pyScope = pyEngine.CreateScope();<br>
                pyScope.SetVariable(<span style="color:#A31515">&quot;request&quot;</span>, queryOperation);<br>                pyScope.SetVariable(<span style="color:#A31515">&quot;cache&quot;</span>, operationCache);<br>
                pyScope.SetVariable(<span style="color:#A31515">&quot;response&quot;</span>, response);<br>                <span style="color:#2B91AF">ScriptSource</span> source = pyEngine.CreateScriptSourceFromFile(<span style="color:#A31515">@&quot;rules.py&quot;</span>);<br>
                <span style="color:#2B91AF">CompiledCode</span> compiled = source.Compile();<br>                compiled.Execute(pyScope);<br>            }<br>            <span style="color:blue">catch</span> (<span style="color:#2B91AF">Exception</span> ex)<br>
            {<br>                <span style="color:green">// error handling elided</span><br>            }<br>        }<br>    }<br>}</span></p><p class="MsoNormal"> </p><p class="MsoNormal"> </p><p class="MsoNormal">Now this is a “toy” approach as I shouldn’t need to create an engine, scope, compile the script, etc. for every post back.  I’m thinking a better approach is to have the script engine, scope and compiled script live at the HttpWebApplication level and be shared across all threads, requests, users.  My concern is that will this approach work.  What are the threading, concurrency, and performance issues involved?  Has anyone done anything like this in ASP, let alone SharePoint and can share their experiences with regards to what works, what does not work, best approach, etc.</p>
<p class="MsoNormal"> </p><p class="MsoNormal">--chuck</p><p class="MsoNormal"> </p><p class="MsoNormal"> </p><p class="MsoNormal"><span style="color:#1F497D">Best Regards,</span></p><p class="MsoNormal"><span style="color:#1F497D">Chuck</span></p>
<p class="MsoNormal"><span style="color:#1F497D"> </span></p><p class="MsoNormal"><span style="color:#1F497D"> </span></p><p class="MsoNormal"><span style="font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#0037A4">Charles Medcoff</span><span style="color:#1F497D"></span></p>
<p class="MsoNormal"><span style="font-size:9.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#0037A4">Principal Consultant<b> </b>|</span><b><span style="font-size:14.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#0037A4"> </span></b><span style="font-size:10.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#0037A4">Enterprise Integration Solutions<b><i> </i></b></span><span style="color:#1F497D"></span></p>
<p class="MsoNormal"><span style="color:#1F497D"> <img border="0" width="192" height="56" alt="Description: Description: mailsiglogo"></span></p><p class="MsoNormal" style="line-height:9.7pt"><span style="font-size:9.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#404040">Tel:  (248) 687-5623</span><span style="color:#1F497D"></span></p>
<p class="MsoNormal" style="line-height:9.7pt"><span style="font-size:9.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:#404040">Cell: (248) 884-2854</span><span style="color:#1F497D"></span></p><p class="MsoNormal">
<span style="color:#1F497D"><a href="https://mail.nusoftsolutions.com/owa/redir.aspx?C=0fb759b134e24832b79fe8f920b40e0c&amp;URL=http%3a%2f%2fwww.rcmt.com%2feis" target="_blank"><span style="font-size:9.0pt;font-family:&quot;Calisto MT&quot;,&quot;serif&quot;;color:blue">www.rcmt.com/eis</span></a></span></p>
<p class="MsoNormal"> </p></div></div><br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.ironpython.com">Users@lists.ironpython.com</a><br>
<a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a><br>
<br></blockquote></div><br></div>