I am looking at extending an existing application through the use of a plugin architecture. The application id written in Delphi, but I want to be able to implement various plugins in whatever language is best of the job. Currently we have skills in Delphi, C# and Java, and would like to be able to implement a plugin in whatever language is required.

Does anyone know of an example system that can be used to implement this ?

I am assuming that I could standardise on a particular COM interface and anything that implements that interface could be a plugin.

Does anyone have any pointers ?

Thanks

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Here is a good overview of a COM-based plugin system that works in both Delphi and C++Builder:

Implementing a Plug-in Framework

link|improve this answer
This is probably closest to what I need, I now need to know how to make a plugin that matches the interface in C#. – Mmarquee Jun 2 '10 at 20:24
To get the C# implementation, just take the type library Delphi produces and import it into Visual Studio which will create everything you need, including a skeleton implementation class. – Nick Hodges Jan 26 at 4:26
feedback

For your C# plugin requirements, here is an example (from Rick Strahl) of hosting the .Net runtime in an unmanaged application (in this case FoxPro) and poking it via a COM interface:

http://www.west-wind.com/weblog/posts/104449.aspx

link|improve this answer
feedback

While I personaly haven't used it, RemObjects Hydra is a plugin framework designed to ease integration of Delphi and .NET.

link|improve this answer
Anything wrong with Hydra or my answer ? – Daniel Maurić Jun 2 '10 at 20:41
Nothing wrong that I can see. +1 to cancel the -1. – Incredulous Monk Jun 4 '10 at 1:52
feedback

Your Answer

 
or
required, but never shown

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