13.5.5. ScriptingAction
Class | org.jboss.soa.esb.actions.scripting.ScriptingAction |
Executes a script using the Bean Scripting Framework, receiving the message, payloadProxy, action configuration and logger as variable input.
- The Bean Scripting Framework does not provide an API to precompile, cache and reuse scripts. Because of this, each execution of the ScriptingAction will go through the compile step again. Please keep this in mind while evaluating your performance requirements.
- When including BeanShell scripts in your application, Red Hat advises you should use a .beanshell extension instead of .bsh, otherwise the JBoss BSHDeployer might pick it up.
Property | Description | Required |
---|---|---|
script |
Path (on classpath) to script.
| |
supportMessageBasedScripting |
Allow scripts within the message.
| |
language |
Optional script language (overrides extension deduction).
| No |
Variable | Description |
---|---|
message |
The Message
|
payloadProxy |
Utility for message payload (MessagePayloadProxy)
|
config |
The action configuration (ConfigTree)
|
logger |
The ScriptingAction's static Log4J logger (Logger)
|
<action name="process" class="org.jboss.soa.esb.scripting.ScriptingAction"> <property name="script" value="/scripts/myscript.beanshell"/> </action>