EJB invoker

EJB invoker is designated to invoke the method of Enterprise Java™ Bean. EJB invoker is a special POJO invoker. So the rules of POJO invoker also takes effect in EJB invoker.

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: