OK, this post is a little old :-)
Have a look at JNI (Java Native Interfaces), since you want do do some 
platform-specific stuff.
Write a Shared Library (*.so / *.dll) with apropriate Method-Names and use it:
public class XY {
  | 
  |     static {
  |         System.loadLibrary( "MyLibrary" );
  |     }
  | 
  |     public native byte[] getBytes() throws SomeException;
  | 
  | }

But I'm not sure if the specs allow an EJB to load Libraries... if not - write 
a standalone - app which subscribes to your Queue/Topic.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963219#3963219

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963219
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to