1

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.

queandans
  • 63
  • 2
  • 8

2 Answers2

1

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

renick
  • 3,873
  • 2
  • 31
  • 40
0

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.

Community
  • 1
  • 1
Humberto
  • 7,117
  • 4
  • 31
  • 46