User srivatsn - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:05:39Z http://stackoverflow.com/feeds/user/21350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/700082/querying-ironpython-scripts-for-interfaces-in-a-hosted-environment/702316#702316 1 Answer by srivatsn for Querying IronPython scripts for interfaces in a hosted environment srivatsn 2009-03-31T18:04:34Z 2009-03-31T18:04:34Z <p>You can always get the backing .NET type for a Python Type by calling clr.GetClrType</p> <p>Python.GetClrModule(engine) returns the clr module and then call the GetClrType method on it passing in the Python class you obtained using objectoperations. That should give you back a System.Type. After that use the GetInterfaces method as you normally would.</p> http://stackoverflow.com/questions/516987/iron-python-installed-but-project-type-missing-from-vs08/518741#518741 1 Answer by srivatsn for Iron Python installed but project type missing from VS08 srivatsn 2009-02-06T01:11:57Z 2009-02-06T01:11:57Z <p>IronPython does not have any VS Integration. The link in your question simply installs the commandline tool. The default folder is IronPython 2.0 under ProgramFiles. That is the only thing that gets installed on your machine.</p> <p>I'm not sure if IronPython Studio that @gimel points supports IPy 2.0 - probably not.</p> http://stackoverflow.com/questions/458310/intercepting-method-access-on-the-host-program-of-ironpython/459449#459449 1 Answer by srivatsn for Intercepting Method Access on the Host Program of IronPython srivatsn 2009-01-19T22:31:45Z 2009-01-19T22:31:45Z <p><a href="http://blogs.msdn.com/srivatsn/archive/2008/04/12/turning-your-net-object-models-dynamic-for-ironpython.aspx" rel="nofollow">This post</a> might be useful.</p> http://stackoverflow.com/questions/443996/has-anyone-tracked-down-whether-ironpython-or-ironruby-will-support-attributes/444490#444490 0 Answer by srivatsn for Has anyone tracked down whether IronPython or IronRuby will support Attributes? srivatsn 2009-01-14T20:12:40Z 2009-01-14T20:12:40Z <p>There was some discussion about the plans in the ironpython mailing list recently - <a href="http://www.mail-archive.com/users@lists.ironpython.com/msg08218.html" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/382487/how-do-i-install-ironpython-2-0-with-ngened-binaries/382704#382704 4 Answer by srivatsn for How do I install IronPython 2.0 with NGEN'ed binaries? srivatsn 2008-12-20T01:00:06Z 2008-12-20T01:00:06Z <p>Try passing in NGENDLLS=True from the commandline. </p> http://stackoverflow.com/questions/359933/how-can-i-add-attributes-to-methods-and-types-defined-in-ironpython/361448#361448 0 Answer by srivatsn for How can I add attributes to methods and types defined in IronPython? srivatsn 2008-12-11T23:43:50Z 2008-12-11T23:43:50Z <p>One, albeit ugly and sometimes impractical, workaround is to create a stub class in C# and decorate it with attributes and derive from that in IronPython.</p> http://stackoverflow.com/questions/359201/how-do-i-create-a-web-service-in-ironpython/361439#361439 0 Answer by srivatsn for How do I create a Web Service in IronPython? srivatsn 2008-12-11T23:39:56Z 2008-12-11T23:39:56Z <p>Have a look at the sample called DynamicWebServiceHelpers in the recently released <a href="http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=8365" rel="nofollow">IronPython 2.0</a>. </p> http://stackoverflow.com/questions/208393/how-to-embed-ironpython-in-a-net-application/210294#210294 6 Answer by srivatsn for How to embed IronPython in a .NET application srivatsn 2008-10-16T20:59:33Z 2008-10-16T20:59:33Z <p>IronPython has a hosting API which can be used to execute IronPython scripts from a C#\VB application.</p> <p><a href="http://www.voidspace.org.uk/ironpython/dlr_hosting.shtml" rel="nofollow">This</a> is a good example of embedding IronPython inside a winforms app.Note that the hosting APIs have changed since that post. <a href="http://blogs.msdn.com/srivatsn/archive/2008/09/16/hosting-ironpython-made-easier.aspx" rel="nofollow">This post</a> shows an example of the latest API</p> <p>You can find the latest specs <a href="http://compilerlab.members.winisp.net/dlr-spec-hosting.pdf" rel="nofollow">here</a></p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/123589#123589 2 Answer by srivatsn for Iron python, beautiful soup, win32 app srivatsn 2008-09-23T20:16:56Z 2008-09-23T20:16:56Z <p>Also, regarding one of the previous comments about compiling with -X:SaveAssemblies - that is wrong. -X:SaveAssemblies is meant as a debugging feature. There is a API meant for compiling python code into binaries. <a href="http://blogs.msdn.com/srivatsn/archive/2008/08/06/static-compilation-of-ironpython-scripts.aspx" rel="nofollow">This post</a> explains the API and the difference between the two modes.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/123532#123532 1 Answer by srivatsn for Iron python, beautiful soup, win32 app srivatsn 2008-09-23T20:10:02Z 2008-09-23T20:10:02Z <p>Regarding the second part of your question, you can use the DLR Hosting APIs to run IronPython code from within a C# application. The DLR hosting spec is <a href="http://compilerlab.members.winisp.net/dlr-spec-hosting.pdf" rel="nofollow">here</a>. This <a href="http://blogs.msdn.com/seshadripv/" rel="nofollow">blog</a> also contains some sample hosting applications</p> http://stackoverflow.com/questions/799987/how-to-pass-a-lambda-expression-to-a-c-constructor-from-an-ironpython-script/800205#800205 Comment by srivatsn on How to pass a lambda expression to a C# constructor from an IronPython script? srivatsn 2009-04-29T00:17:33Z 2009-04-29T00:17:33Z Did you add a reference to System.Core.dll? System.Action&lt;T&gt; is defined in mscorlib but System.Action&lt;T1,T2&gt; is defined in System.Core.