IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Customizing the EJB Access Action

About this task

If you want to customize an EJB Access Action, change the attribute values in its externalized data. The following table lists the ways you can customize the action and the tags you use to do so. For information on specific tags, see EJB Access Action external definitions.
Table 1. Customizing the action tasks
Customization Attribute or setting to use
Implementing extensions to the toolkit In the definition of the action, change the value of the type attribute. The definition for the current implementation is:
type="com.ibm.btt.struts.actions.EJBAction"
Using a work area In the web.xml file, provide or modify the work area setting:
<servlet id="Servlet_1111028199453">
		<servlet-name>action</servlet-name>
		<servlet-class>com.ibm.btt.struts.base.BTTActionServlet</servlet-class>
		...
		<init-param>
  			<param-name>workarea</param-name> 
  			<param-value>false</param-value> 
		</init-param>
		...
<servlet>
Setting the value of workarea to true only if the application logic layer is running on WebSphere® Business Integration Server Foundation. If you do not include this setting, the system uses the value given in the example as the default value.
Changing the invoker for the EJB In the definition for the action, change the invokerID attribute.

See Configuring Single Action EJBs for ways you can customize the Single Action EJB that the action invokes.



Feedback