Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to call a native VOIP library from an EJB. However, on

System.loadLibrary(...)

JBoss shuts down: it says it received an ABRT and shuts down.

I know about JCA, but I'm looking for a more pragmatic solution. Is there a (low effort) way of calling a JNI function from an EJB?

(using JBoss EAP 6 + Java 6 on SLES 11 64bit)

------> Thanks for the helpful answers! I implemented a small external java app that encapsulates the jni stuff and offers a webservice.

share|improve this question
1  
JCA is the proper solution in this case and is rather simple to implement once you figure out what interface and class to implement – Stéphane Nov 20 '12 at 15:55

1 Answer

up vote 2 down vote accepted

I haven't done EJB for a few years but unless it has changed since, one of the EJB restrictions is that you can't call native code.

How I worked around this was from EJB, I could make a call to a RMI server and a JNI call can happen from there.

share|improve this answer
Thanks for your hint. I am looking for a "smaller" solution without the effort to have an extra server. Any idea? – conrad Nov 20 '12 at 15:25
1  
Do you have to use EJB? If not, the only suggestion would be port your code to run with another container (tomcat?). Otherwise, you could consider porting your native functionality to pure java. The EJB restriction on running native code is non-negotiable :) – Dughall Nov 21 '12 at 13:24
Thanks for your help. I implemented a single application that offers a webservice that encapsulates the jni. – conrad Nov 23 '12 at 6:36
Cool - a web service seems like a good solution. – Dughall Nov 23 '12 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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