tags:

views:

42

answers:

2

I am working on a project that the software is written in .NET C# and now new features require that we call third party's APIs that are built in C++ on Linux. We are given the .so files. What is the best way to achieve this? Is developing a JBoss application server and with JNI the best way?

Thanks.

A: 

Can you supply a web service façade for the C# application? This way you'll call the APIs through Web References. JNI will add a whole Java framework between your app and the APIs.


Also, consider reading this thread.

Humberto
+1  A: 

You can try with Mono Interop and an ASP.NET web service implemented in Mono

renick