IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

EJB invoker

EJB invoker is designed to invoke the method of Enterprise Java Bean. EJB invoker is a special POJO invoker. So the rules of POJO invoker also applies to EJB invoker. EJB invoker calls the EJB by jNDIName, which is the traditional way for calling EJB 2.0, and calling EJB 3.0 by jIDName is also supported.

Following is a code example:
<EJB  id="logoninvoker"  jNDIName="ejb/ejbs/EJBProvierHome" 
      beanName=" com.ibm.btt.samples.html.business.SignIn " 
      method="execute" >
    <parameters>
        <parameter id="userId" type="java.lang.String"/>
        <parameter id="password" type="java.lang.String"/>
    </parameters>
    
</invoker>

where beanName and method stand for the EJB's class and method.

EJB invoker has the following optional properties:


Feedback