I have a couple of native applications written in C++ and C#. These are legacy applications that require data sharing between them. Currently, data sharing is through import/export of text file in some proprietary format. We are currently looking at integrating these two applications using eclipse. My questions are:
- How can we integrate native applications such as c++ and c# based applications into eclipse?
- What kind of data integration methods does eclipse provide for native applications?
- Is eclipse the best choice for such use?
Also, it will be very helpful if you can share your experiences about integrating native applications in eclipse.
[EDIT] I am specifically looking at integrating native applications into eclipse just the way we would integrate a eclipse plugin written in Java. For example, what does it take to write a wrapper plugin in Java which will wrap a native tool by using JNI calls that can be integrated into eclipse just as any other eclipse plugin? Is this is a preferred approach for integrating native applications or is it a good idea to rewrite my legacy native application in Java?
I am not looking at using eclipse as a launch pad for my native applications using the "External Tools" configuration.