[jboss-svn-commits] JBL Code SVN: r8034 - in labs/jbossesb/trunk/product: . samples/trailblazer2

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Dec 1 14:26:52 EST 2006


Author: mark.little at jboss.com
Date: 2006-12-01 14:26:50 -0500 (Fri, 01 Dec 2006)
New Revision: 8034

Added:
   labs/jbossesb/trunk/product/samples/trailblazer2/readme.txt
Modified:
   labs/jbossesb/trunk/product/build.xml
Log:
Added Readme from Daniel.

Modified: labs/jbossesb/trunk/product/build.xml
===================================================================
--- labs/jbossesb/trunk/product/build.xml	2006-12-01 18:58:42 UTC (rev 8033)
+++ labs/jbossesb/trunk/product/build.xml	2006-12-01 19:26:50 UTC (rev 8034)
@@ -188,7 +188,16 @@
 				<include name="*.jar"/>
 			</fileset>
 		</copy>
-		<copy file="lib/Licenses.txt" todir="${org.jboss.esb.installationdirectory}/lib" />
+		
+		<mkdir dir="${org.jboss.esb.installationdirectory}/lib/ext"/>
+			<copy
+				todir="${org.jboss.esb.installationdirectory}/lib/ext">
+				<fileset dir="lib/ext">
+					<include name="*.jar"/>
+				</fileset>
+			</copy>
+		
+		<copy file="lib/Licenses.txt" todir="${org.jboss.esb.installationdirectory}/lib"/>
 
 		<echo message="Installing xml ${org.jboss.esb.installationdirectory}"/>
 		<mkdir dir="${org.jboss.esb.installationdirectory}/xml"/>

Added: labs/jbossesb/trunk/product/samples/trailblazer2/readme.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/trailblazer2/readme.txt	2006-12-01 18:58:42 UTC (rev 8033)
+++ labs/jbossesb/trunk/product/samples/trailblazer2/readme.txt	2006-12-01 19:26:50 UTC (rev 8034)
@@ -0,0 +1,32 @@
+The trailblazer is a small application that uses several of the services provided by the JBoss ESB.
+
+Required to run the Trailblazer:
+- ANT
+- A mail server to send email notifications
+- JBoss AS 4.0.4 or higher with EJB3 and JBossWS support.  You can install the latest JBoss AS JEMS installer and select the "EJB3" install config to get the right one installed.
+
+Settings required to edit before running:
+
+File: trailblazer-properties.xml
+- Update the section titled "transports" and specify all of the SMTP mail server settings for your environment.
+- you can change the settings in the "trailblazer" to work on different queues, etc but you can leave all of these as is for the default settings.
+
+File: build.properties
+- update with the 2 settings below to where you have your JBoss deployed to, along with the server instance you are using:
+org.jboss.soa.samples.trailblazer.jboss_home=/opt/jboss-4.0.5
+org.jboss.soa.samples.trailblazer.jboss_server=default
+
+
+-------------------------------------------
+To run the Trailblazer, follow these steps:
+
+1 - run your JBoss AS - you will need to have the 4.0.4 or higher with the EJB3 support installed.  This is rquired because the TB uses the JSR-181 pojo style web service.
+
+2 - from the TB_ROOT, execute the command to start the ESB: ANT deploy runESB
+* this should deploy the WAR to your JBoss AS server/default and deploy the Web Service/JSP page.
+
+3 - from the TB_ROOT/banks execute the command to start the Bank service: ANT runJMSBank
+
+4 - from the jsp: localhost:8080/trailblazer
+
+That's it.  Now you can submit quotes, and you should receive an email at the specified address on the page.




More information about the jboss-svn-commits mailing list