[jboss-svn-commits] JBL Code SVN: r7892 - labs/jbossesb/trunk/product/samples/quickstarts
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue Nov 28 15:40:18 EST 2006
Author: burrsutter
Date: 2006-11-28 15:40:17 -0500 (Tue, 28 Nov 2006)
New Revision: 7892
Modified:
labs/jbossesb/trunk/product/samples/quickstarts/readme.txt
Log:
Modified: labs/jbossesb/trunk/product/samples/quickstarts/readme.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/readme.txt 2006-11-28 20:40:09 UTC (rev 7891)
+++ labs/jbossesb/trunk/product/samples/quickstarts/readme.txt 2006-11-28 20:40:17 UTC (rev 7892)
@@ -11,6 +11,7 @@
ESB and JBoss AS home directory. Modify according to your installation.
Prerequisites:
+- Assumes you are comfortable working at the command line with Ant
- Assumes you are running JBossMQ on JBoss Application Server. Other JMS
solutions should work as well but the configuration files contained in the
quickstarts are focused on JBossMQ.
@@ -30,3 +31,28 @@
first time using the JBoss ESB then start by exercising this simple
"Hello World" example.
+* helloworld_action - Builds on the concepts of the helloworld example but also
+show the use of multiple methods in a given action, how to "chain" action
+invocations into a particular sequence for a listener and how to respond
+(request/reply). This means of responding via custom JMS code will eventually
+go away but as of 11/27/2006 it is the way to handle the response.
+
+Rapid Registry Configuration
+These examples require that the jUDDI database be setup properly and that
+the database be accessible from the environment from which the listener is
+executed. JBoss ESB ships with the SQL configuration scripts needed to setup
+the jUDDI database. Execute the following scripts
+install\jUDDI-registry\sql\mysql\create_database.sql
+install\jUDDI-registry\sql\mysql\insert_publishers.sql
+and then modify the quickstarts\juddi.properties
+juddi.isUseDataSource=false
+juddi.jdbcDriver=com.mysql.jdbc.Driver
+juddi.jdbcUrl=jdbc:mysql://localhost:3306/juddi
+juddi.jdbcUsername=root
+juddi.jdbcPassword=admin
+# jUDDI DataSource to use
+# juddi.dataSource=java:comp/env/jdbc/MySqlDS
+
+There are times when the listener starts that it fails to register and you'll
+get an exception/stack trace on the console. Simply stop the listener and
+restart.
More information about the jboss-svn-commits
mailing list