vote up 0 vote down star

Yes ....

Technically ... what is involved in ILMerging the DLR and Iron Ruby into a single DLL? What should I be careful about?

Legally (MS-PL) ... am I allowed to ship an open source dll that had iron ruby and the DLR embedded into it? (Looks like the answer to this question is, usually yes, what OS licenses is ms-pl compatible with?)

flag

1 Answer

vote up 1 vote down

Rather than using ILMerge to combine the DLR and IronRuby since the source to both is available and you could just compile them into the same dll which would be a lot easier.

The thing I'd be careful about is that IronRuby is still alpha and it would be incredibly risky to run a production service using it. It's only in the last 6 months or so that the IronRuby releases have started getting packaged up prior to which it was do it yourself builds from svn. In the 18 months or so I have been using IronRuby the interfaces and even assembly names changed regularly. I would expect things to be stabilisng now.

I have an experimental server running that utilises a slightly older version of IronRuby and that version has a significant memory leak. I worked around it by automatically restarting the service every 24 hours. Things have probably improved since then.

I don't know about the legal side of things but it's probably a similar approach to Siverlight where the beta licenses explicilty forbid commerical applications and permitted only development ones. Once SL was formally release the license changed to allow commerical products to be built on top of it.

IronPython on the other hand is production ready and I have had good experiences using it on a production service for the last two years.

link|flag
Any caveats with iron python redistribution ? – Sam Saffron Mar 27 at 12:30
The IronPython version I use in production is 1.0 (file version 1.0.61005.1977 which was released 2006 I think). It has been rock solid for me and I've never had an issue with it. I host it in a C# SIP Proxy with a 100's of script executions per second and again never had a problem. – sipwiz Mar 27 at 12:45
but doesn't that have a more restrictive license when it comes to redistribution? – Sam Saffron Mar 27 at 12:50
Not too sure. MS licensing requires almost as much expertise as the actual programming! I don't redistribute IronPython, only use it. From what I have seen of MS licenses things get hairy if you want to change the source and distribute. Distributing unchanged seems to be fine. – sipwiz Mar 27 at 13:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.