Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java wrapped around C++ 1

Status
Not open for further replies.

mgallot

MIS
Jan 22, 2001
93
US
An application we are considering for purchase is written in C++, but comes with an EJB interface. Do you think that Java developers would be limited because of the underlying code? The Java programmers want to have the open architecture, full J2EE functions available to them. Short of testing the actual API, do you see any glaring problems?
 
While it is possible to interface C/C++ programs with Java, Unless there are no other viable solutions, I would advise against it, because if something goes wrong, it makes debugging a nightmare.
 
I'd tend to be wary about performance as well. There's a non-trivial overhead for every JNI call, which may tend to make operations that are normally very cheap significantly more expensive.

Justin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top