-
Hi, all
I am making a native C++ dll call inside my session bean
and gets a serverside exception about access denied when
I try to do LoadLibrary, anybody has prior experience with
that? How to fix it? Where are the related resources?
Any suggestion will greatly be appreciated.
Thanks
-
The EJB spec disallows JNI. However, many application server vendors permit it. I would check with your vendor.
-
Try wrapping your native code in CORBA, or using RMI/JNI.
-Ed
-
Can a stateless session bean invoke a helper class that use JNI to call C or C++ code?
Can you explain how to use RMI/JNI from stateless sessión bean?
Thanks a lot!!