User srivatsn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:05:39Zhttp://stackoverflow.com/feeds/user/21350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700082/querying-ironpython-scripts-for-interfaces-in-a-hosted-environment/702316#7023161Answer by srivatsn for Querying IronPython scripts for interfaces in a hosted environmentsrivatsn2009-03-31T18:04:34Z2009-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#5187411Answer by srivatsn for Iron Python installed but project type missing from VS08srivatsn2009-02-06T01:11:57Z2009-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#4594491Answer by srivatsn for Intercepting Method Access on the Host Program of IronPythonsrivatsn2009-01-19T22:31:45Z2009-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#4444900Answer by srivatsn for Has anyone tracked down whether IronPython or IronRuby will support Attributes?srivatsn2009-01-14T20:12:40Z2009-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#3827044Answer by srivatsn for How do I install IronPython 2.0 with NGEN'ed binaries?srivatsn2008-12-20T01:00:06Z2008-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#3614480Answer by srivatsn for How can I add attributes to methods and types defined in IronPython?srivatsn2008-12-11T23:43:50Z2008-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#3614390Answer by srivatsn for How do I create a Web Service in IronPython?srivatsn2008-12-11T23:39:56Z2008-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#2102946Answer by srivatsn for How to embed IronPython in a .NET applicationsrivatsn2008-10-16T20:59:33Z2008-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#1235892Answer by srivatsn for Iron python, beautiful soup, win32 appsrivatsn2008-09-23T20:16:56Z2008-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#1235321Answer by srivatsn for Iron python, beautiful soup, win32 appsrivatsn2008-09-23T20:10:02Z2008-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#800205Comment by srivatsn on How to pass a lambda expression to a C# constructor from an IronPython script?srivatsn2009-04-29T00:17:33Z2009-04-29T00:17:33ZDid you add a reference to System.Core.dll? System.Action<T> is defined in mscorlib but System.Action<T1,T2> is defined in System.Core.