]
David Ward commented on JBESB-1683:
-----------------------------------
Hmmm... well, looks like the environment (classloading + deployers) are different for the
test case vs. when run in .esb mode. ;) ;) ;) I found a couple bugs:
1. helloworld.bsh should be renamed helloworld.beanshell so our gold ol'
BeanShellDeployer doesn't pick it up (although it seems hit or miss, otherwise I would
have noticed it before). So, rename the script and change the name in jboss-esb.xml.
2. jsr-14.jar can be removed. It's not needed.
3. Here's the nasty one. You won't actually have access to the declared beans
(like "message") in your py + js scripts unless classloading is "just
so". Basically, jython.jar and js.jar *cannot* be included in the esb archive. They
have to be loaded by the same classloader as bsf.jar is. Sooooo, for all of the following
scripts to work, one needs to place jython.jar and js.jar in
jbossesb-server-4.2.1GA/server/default/lib/. NOT in scripting-quickstart.esb (so remove
them from the quickstart lib dir). The problem I see with this is (a) licensing, and (b)
it's a manual step for the person running the quickstart. Any ideas?
4) Here are the new scripts I tested that work just dandy when jython.jar and js.jar are
next to bsf.jar and bsh.jar in jbossesb-server-4.2.1GA/server/default/lib/. :
hellworld.bsh:
print("**** Hello World from BeanShell! ****");
print(message)
helloworld.gy:
println "**** Hello World from Groovy! ****"
println message
helloworld.js:
importClass(java.lang.System);
System.out.println("**** Hello World from JavaScript! ****");
System.out.println(message.toString());
helloworld.py:
print "**** Hello World from Python! ****"
print message.toString()
ScriptingAction donation to support more languages
--------------------------------------------------
Key: JBESB-1683
URL:
http://jira.jboss.com/jira/browse/JBESB-1683
Project: JBoss ESB
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: Build and Release, Examples, Rosetta, Testing
Affects Versions: 4.2.1
Environment: agnostic
Reporter: David Ward
Attachments: jbossesb-scripting.zip
Original Estimate: 2 hours
Remaining Estimate: 2 hours
This is a donation to add a greater scripting capability to JBoss ESB. Currently, only
Groovy is supported via the GroovyActionProcessor. This new donation, the
ScriptingAction, uses the Apache Jakarta Bean Scripting Framework (BSF) to support any of
the 23 scripting languages it supports, Groovy being one of them. Yes, I thought of the
Java 6 javax.script package, but everything in JBoss ESB 4.2 needs to work with JDK 5,
thus my choice.
Everything has been built against
http://anonsvn.jboss.org/repos/labs/labs/jbossesb/trunk
as of 2008-04-19 03:45:28 -0400 (Sat, 19 Apr 2008).
Please see the attached jbossesb-scripting.zip file, with the following contents:
jbossesb/trunk/product/build-distr.xml
jbossesb/trunk/product/.classpath
jbossesb/trunk/product/lib/ext/bsf-2.4.0.jar
jbossesb/trunk/product/lib/ext/bsh-2.0b4.jar
jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/actions/scripting/ScriptingAction.java
jbossesb/trunk/product/rosetta/tests/src/org/jboss/soa/esb/actions/scripting/ScriptingActionUnitTest.java
jbossesb/trunk/product/rosetta/tests/src/org/jboss/soa/esb/actions/scripting/test.bsh
jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml
jbossesb/trunk/product/samples/quickstarts/conf/quickstarts.properties-example
jbossesb/trunk/product/samples/quickstarts/scripting/build.xml
jbossesb/trunk/product/samples/quickstarts/scripting/deployment.xml
jbossesb/trunk/product/samples/quickstarts/scripting/jbmq-queue-service.xml
jbossesb/trunk/product/samples/quickstarts/scripting/jbm-queue-service.xml
jbossesb/trunk/product/samples/quickstarts/scripting/jbossesb-properties.xml
jbossesb/trunk/product/samples/quickstarts/scripting/jboss-esb.xml
jbossesb/trunk/product/samples/quickstarts/scripting/jndi.properties
jbossesb/trunk/product/samples/quickstarts/scripting/juddi.properties
jbossesb/trunk/product/samples/quickstarts/scripting/lib/js-14.jar
jbossesb/trunk/product/samples/quickstarts/scripting/lib/js.jar
jbossesb/trunk/product/samples/quickstarts/scripting/lib/jython.jar
jbossesb/trunk/product/samples/quickstarts/scripting/log4j.xml
jbossesb/trunk/product/samples/quickstarts/scripting/readme.txt
jbossesb/trunk/product/samples/quickstarts/scripting/scripts/helloworld.bsh
jbossesb/trunk/product/samples/quickstarts/scripting/scripts/helloworld.gy
jbossesb/trunk/product/samples/quickstarts/scripting/scripts/helloworld.js
jbossesb/trunk/product/samples/quickstarts/scripting/scripts/helloworld.py
jbossesb/trunk/product/samples/quickstarts/scripting/src/org/jboss/soa/esb/samples/quickstart/scripting/test/SendJMSMessage.java
First off, I made some config/build fixes. Here is a diff:
Index: product/build-distr.xml
===================================================================
--- product/build-distr.xml (revision 19660)
+++ product/build-distr.xml (working copy)
@@ -63,6 +63,10 @@
<delete dir="${esbserver.dist.dir}"/>
<unzip
src="${installation.files.dir}/standalone/jbossesb-server-base.zip"
dest="${build.dir}"/>
<chmod dir="${build.dir}/jbossesb-server/bin" perm="ugo+rx"
includes="*.sh"/>
+ <!-- upgrade BeanShell from 1.3.0 to 2.0b4 -->
+ <copy file="${lib.ext.dir}/bsh-2.0b4.jar"
tofile="${build.dir}/jbossesb-server/server/default/lib/bsh.jar"
overwrite="true"/>
+ <!-- introduce Apache Bean Scripting Framework -->
+ <copy file="${lib.ext.dir}/bsf-2.4.0.jar"
tofile="${build.dir}/jbossesb-server/server/default/lib/bsf.jar"/>
<move file="${build.dir}/jbossesb-server"
tofile="${esbserver.dist.dir}"/>
</target>
Index: product/.classpath
===================================================================
--- product/.classpath (revision 19660)
+++ product/.classpath (working copy)
@@ -12,14 +12,16 @@
<classpathentry kind="lib"
path="lib/ext/commons-lang-2.1.jar"/>
<classpathentry kind="lib" path="lib/ext/emma_ant.jar"/>
<classpathentry kind="lib" path="lib/ext/emma.jar"/>
+ <classpathentry kind="lib" path="lib/ext/bsf-2.4.0.jar"/>
+ <classpathentry kind="lib" path="lib/ext/bsh-2.0b4.jar"/>
<classpathentry kind="lib"
path="lib/ext/groovy-all-1.0.jar"/>
<classpathentry kind="lib" path="lib/ext/hsqldb.jar"/>
<classpathentry kind="lib"
path="lib/ext/jbossall-client.jar"/>
<classpathentry kind="lib" path="lib/ext/jboss-system.jar"/>
<classpathentry kind="lib"
path="lib/ext/jbossts-common.jar"/>
<classpathentry kind="lib" path="lib/ext/jsch-0.1.jar"/>
- <classpathentry kind="lib"
path="lib/ext/juddi-1.0-SNAPSHOT.jar"/>
- <classpathentry kind="lib"
path="lib/ext/juddi-client-1.0-SNAPSHOT.jar"/>
+ <classpathentry kind="lib" path="lib/ext/juddi-2.0rc5.jar"/>
+ <classpathentry kind="lib"
path="lib/ext/juddi-client-2.0rc5.jar"/>
<classpathentry kind="lib" path="lib/ext/junit-4.1.jar"/>
<classpathentry kind="lib" path="lib/ext/log4j.jar"/>
<classpathentry kind="lib" path="lib/ext/mail.jar"/>
@@ -33,9 +35,10 @@
<classpathentry kind="lib"
path="lib/ext/xercesImpl-2.7.1.jar"/>
<classpathentry kind="lib"
path="lib/ext/xml-apis-1.3.02.jar"/>
<classpathentry kind="lib" path="lib/ext/xmlpublic.jar"/>
- <classpathentry kind="lib"
path="lib/ext/xstream-1.1.3.jar"/>
+ <classpathentry kind="lib"
path="lib/ext/xstream-1.2.2.jar"/>
<classpathentry kind="lib" path="lib/ext/jboss.jar"/>
<classpathentry kind="lib"
path="lib/ext/commons-io-1.3.jar"/>
+ <classpathentry kind="lib"
path="lib/ext/commons-codec-1.3.jar"/>
<classpathentry kind="lib"
path="lib/ext/edtftpj-1.5.4.jar"/>
<classpathentry kind="lib"
path="ftp/lib/backport-util-concurrent-2.2.jar"/>
<classpathentry kind="lib"
path="ftp/lib/ftplet-api-1.0-incubator-SNAPSHOT.jar"/>
Index: product/samples/quickstarts/conf/quickstarts.properties-example
===================================================================
--- product/samples/quickstarts/conf/quickstarts.properties-example (revision 19660)
+++ product/samples/quickstarts/conf/quickstarts.properties-example (working copy)
@@ -5,7 +5,7 @@
##############################################################################################
# Location of your JBoss Application Server installation.
# Will override the same property name from install/deployment.properties
-#org.jboss.esb.server.home=${product.dir}/build/jbossesb-server-4.2GA
+#org.jboss.esb.server.home=${product.dir}/build/jbossesb-server-4.2.1GA
# JBossAS server name. If not set defaults to 'default'
# Will override the same property name from install/deployment.properties
Index: product/samples/quickstarts/conf/base-build.xml
===================================================================
--- product/samples/quickstarts/conf/base-build.xml (revision 19660)
+++ product/samples/quickstarts/conf/base-build.xml (working copy)
@@ -271,6 +271,7 @@
<pathelement location="${basedir}/src" />
<fileset dir="${org.jboss.esb.server.server}/lib"
includes="jboss-remoting.jar jboss-j2ee.jar jboss-messaging-client.jar" />
<!-- Required for JMS Client Code. -->
<fileset dir="${org.jboss.esb.server.server}/lib"
includes="hibernate3.jar commons-collections.jar hsqldb.jar" /> <!--
Required for jbpm Client Code. -->
+ <fileset dir="${org.jboss.esb.server.server}/lib"
includes="bsf.jar" /> <!-- Required for scripting Client Code. -->
<fileset dir="${org.jboss.esb.server.server}/lib"
includes="bsh.jar" /> <!-- Required for scripting Client Code. -->
<fileset dir="${org.jboss.esb.server.home}/lib/endorsed"
includes="*.jar" /> <!-- Required for JMS Client Code. -->
<fileset
dir="${org.jboss.esb.server.server}/deploy/jboss-aop-jdk50.deployer"
includes="jboss-aop-jdk50.jar" /> <!-- Required for JMS Client Code.
-->
Please note in .classpath I had to fix the juddi, xstream and commons-codec jars because
someone else busted them. 'twasn't me! ;) You will also notice the addition
of BSF 2.4.0, and the upgrade of BeanShell from 1.3.0 to 2.0b4 in AS (something I've
wanted for a long time). Last, I fixed the quickstarts.properties-example file to reflect
the change to jbossesb-server-4.2.1GA.
Now, for the meat. The relatively simple code lives in ScriptingAction.java, which was
modeled after GroovyActionProcessor.java.
There is also a test case, ScriptingActionUnitTest, which exercises both BeanShell and
Groovy scripts:
[java] [junit] Running
org.jboss.soa.esb.actions.scripting.ScriptingActionUnitTest
[java] [junit] Testsuite:
org.jboss.soa.esb.actions.scripting.ScriptingActionUnitTest
[java] [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 1.392 sec
[java] [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 1.392 sec
[java] [junit] ------------- Standard Output ---------------
[java] [junit] EMMA: collecting runtime coverage data ...
[java] [junit] ------------- ---------------- ---------------
[java] [junit]
[java] [junit] Testcase: test_groovy_file took 0.932 sec
[java] [junit] Testcase: test_bsh_file took 0.1 sec
[java] [junit] Testcase: test_groovy_inlined took 0.05 sec
[java] [junit] Testcase: test_bsh_inlined took 0.012 sec
[java] [junit] Testcase: test_beanshell_inlined took 0.012 sec
I also created a quickstart, called "scripting". It has an action pipeline
which calls out to BeanShell, Groovy, Python, and JavaScript. (Note: bsf.jar and bsh.jar
are in the server's lib directory because older versions were already there. Python
uses the jython library, and JavaScript uses the Mozilla Rhino library - both of which
have different licenses. Thus, I did not included them in the server's lib directory.
I only put them in just the quickstart's lib directory.)
ANYwho, it runs fine in both '.esb' archive mode:
01:13:11,865 INFO [STDOUT] Hello World from BeanShell!
01:13:11,926 INFO [STDOUT] Hello World from Groovy!
01:13:11,960 INFO [STDOUT] Hello World from Python!
01:13:11,968 INFO [STDOUT] Hello World from JavaScript!
as well as in standalone mode:
[qsjava] Hello World from BeanShell!
[qsjava] Hello World from Groovy!
[qsjava] Hello World from Python!
[qsjava] Hello World from JavaScript!
Hopefully this can make it into an upcoming version of the ESB. Any questions, feel free
to ask. Comments welcome. Enjoy!
David
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: