5.1.1.5.2 Defining a Plug-In Interface in the SALT Configuration File
To define a plug-in shared library that is loaded by the GWWS server, the corresponding plug-in library path must be configured in the SALT deployment file. For more information, see Creating the SALT Deployment File in the SALT Configuration Guide.
An example of how to define plug-in information in the SALT deployment file is shown below:
Example 5-3 Defined Plug-In in the SALT Deployment File
<?xml version="1.0" encoding="UTF-8"?>
<Deployment xmlns="http://www.bea.com/Tuxedo/SALTDEPLOY/2007">
. . . . . . .
. . . . . . .
<System>
<Plugin>
<Interface
id=”P_CREDENMAP”
name=”TEST”
library=”credmap_plugin.dll” />
</Plugin>
</System>
</Deployment>
Note:
To define multiple plug-in interfaces, multiple <Interface>
elements must be specified. Each <Interface>
element indicates one plug-in interface.
Multiple plug-in interfaces can be built into one shared library file.
Parent topic: Developing a Plug-In Interface