Hi DoubleT,
My understanding is that you are trying, from a standalone appplication or Tomcat instance, to invoke a remote JPPF reource adaptor deployed in JBoss, is this correct?
If yes, then I don't see any way this can work, this is definitely not what the J2EE connector was intended for.
What you would need to do is to embed a straight (J2SE) JPPF client in your application.
For instance, for a Tomcat web application packaged as a war you would need the following:
- in YourWebApp.war/WEB-INF/lib:
jppf-client.jar
jppf-common-node.jar
jppf-common.jar
slf4j-api-1.6.1.jar
slf4j-jdk14-1.6.1.jar
jmxremote_optional.jar
- and also add a jppf.properties configuration file in YourWebApp.war/WEB-INF/classes
Another approach would be to define in JBoss a web service front-end for the JPPF resource adapter, and invoke this web service from your standalone or Tomcat application.
I hope this helps.
SIncerely,
-Laurent