[jboss-svn-commits] JBL Code SVN: r9248 - in labs/jbossesb/trunk/product: docs/services and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Feb 1 07:33:41 EST 2007


Author: tfennelly
Date: 2007-02-01 07:33:41 -0500 (Thu, 01 Feb 2007)
New Revision: 9248

Modified:
   labs/jbossesb/trunk/product/console/view/about.xhtml
   labs/jbossesb/trunk/product/docs/services/MessageTransformation.odt
   labs/jbossesb/trunk/product/docs/services/MessageTransformation.pdf
   labs/jbossesb/trunk/product/samples/quickstarts/transform_EDI2XML_Groovy_XSLT/README.txt
   labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt
   labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_simple/README.txt
Log:
Added a link to the http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demo-03.html flash demo.  Updated the quickstart readmes.  Update the PDF.

Modified: labs/jbossesb/trunk/product/console/view/about.xhtml
===================================================================
--- labs/jbossesb/trunk/product/console/view/about.xhtml	2007-02-01 11:07:03 UTC (rev 9247)
+++ labs/jbossesb/trunk/product/console/view/about.xhtml	2007-02-01 12:33:41 UTC (rev 9248)
@@ -198,6 +198,11 @@
 				<a href="flash/console-demo-02.html">Demo 2</a>: A slightly more advanced demo that builds on Demo 1.
 				Be sure to go through Demo 1 before looking at Demo 2.
 				<p/>
+				<a href="http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demo-03.html">Demo 3</a>: 
+				This demo gets more detailed again. It walks you through the steps that were involved in creating the "<i>transform_EDI2XML_Groovy_XSLT</i>" Quickstart (available in the JBoss ESB 4.0 distribution).
+				It demonstrates how to perform EDI message processing, as well as create reusable transformation components in Groovy.  This demo tries to take
+				the reader through the full process of creating JBoss ESB Transformations in a step by step manner.
+				<p/>
 			</div>
 		</div>
 

Modified: labs/jbossesb/trunk/product/docs/services/MessageTransformation.odt
===================================================================
(Binary files differ)

Modified: labs/jbossesb/trunk/product/docs/services/MessageTransformation.pdf
===================================================================
(Binary files differ)

Modified: labs/jbossesb/trunk/product/samples/quickstarts/transform_EDI2XML_Groovy_XSLT/README.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_EDI2XML_Groovy_XSLT/README.txt	2007-02-01 11:07:03 UTC (rev 9247)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_EDI2XML_Groovy_XSLT/README.txt	2007-02-01 12:33:41 UTC (rev 9248)
@@ -1,3 +1,60 @@
-This Quickstart is a WORK IN PROGRESS!!
-
-This file will be updated once this Quickstart is more complete :-)
\ No newline at end of file
+Overview:
+=========
+    This is the most advanved of the "transform" Quickstarts.  Be sure to go through the other
+    Quickstarts before going through this.
+    
+    This Quickstart is quite detailed.  There's an accompanying Flash demo that walks you through
+    all the steps that were involved in creating this Quickstart.  You should check this out before
+    or as you go through this quickstart:
+    	http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demo-03.html
+    
+    Out of the box, this Quickstart does not use the JBoss ESB Administration Console to manage the
+    message Transformation configurations to the ESB.  However, as you'll hopefully have seen from the
+    Flash demo mentioned above, this Quickstart was created using the Admin Conosle.  In order to ship
+    with the ESB distribution, the transformations configurations were exported from the console and
+    into the "smooks-res.xml" file here in this Quickstart.  See the end of this README for details on how
+    to re-import and manage this Quickstart's transformations via the Console.
+
+
+Before Running:
+===============
+    1. Update the "org.jboss.esb.appserver.home" property in the quickstarts.properties file in "../".
+    2. Make sure to run the the ant script in the "install" folder of the distribution.  This
+       deploys the required SARs to your JBoss Application Server instance.
+    3. Make sure the JBoss Application server is running.
+    4. It would be a great idea to read MessageTransformation.pdf to fully understand this
+       Quickstart.  It is located in the docs/services folder.
+
+
+To Run:
+=======
+    1. In a command terminal window in this folder ("Window1"), type "ant run".
+    2. Open another command terminal window in this folder ("Window2"), type "ant runtest".
+    3. Switch back to "Window1" to see the message transformation before and after.
+    
+    Note that, as with all these Quickstarts, you can deply and run them through your local
+    JBoss Application Server instance.  To do this, skip step 1 above and in it's place 
+    execute the following Ant task:
+        "ant deployToSAR"
+    This will packagce up this Quickstart and deploy it to your JBoss AS instance.  The Quickstart
+    "Service" will automatically start then.  At that point, continue with steps 2 and 3.
+
+
+What to look at in this Quickstart:
+===================================
+    The Flash demo at:
+    	http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demo-03.html
+
+
+Playing with this Transformation through the Administration Console:
+====================================================================
+    To load the Transformation Configurations defined in smooks-res.xml into the Admin Console, and have them
+    managed from the Admin Console, do the following:
+    
+    1. Deploy the console as outlined in MessageTransformation.pdf.
+    2. Edit the smooks-cdr.lst file in this folder, commenting out both the classpath based listings and
+       uncommenting out the listing for the console HTTP URI.  The same set of steps were executed at the 
+       start of the Flash demo.
+    3. In the console, import "smooks-res.xml" through the "Import Configurations" form.
+    4. You are now ready to start managing the message transformations through the console.  You can add more
+       transformations and modify the existing transformations.  Be sure to read MessageTransformation.pdf!!!
\ No newline at end of file

Modified: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt	2007-02-01 11:07:03 UTC (rev 9247)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt	2007-02-01 12:33:41 UTC (rev 9248)
@@ -13,12 +13,16 @@
     This Quickstart does not use the JBoss ESB Administration Console to manage the
     message Transformation configurations to the ESB.  See the end of this README for details on how
     to manage this Quickstart's transformations via the Console.
+    
+    Check out the Administration Console Flash demos at:
+    	http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demos.html
 
 
 Before Running:
 ===============
-    1. Update the "jbosshome.dir" property in the quickstarts.properties file in "../".
-    2. Make sure the jbossesb.sar is deployed on your JBoss Application Server.
+    1. Update the "org.jboss.esb.appserver.home" property in the quickstarts.properties file in "../".
+    2. Make sure to run the the ant script in the "install" folder of the distribution.  This
+       deploys the required SARs to your JBoss Application Server instance.
     3. Make sure the JBoss Application server is running.
     4. It would be a great idea to read MessageTransformation.pdf to fully understand this
        Quickstart.  It is located in the docs/services folder.
@@ -29,6 +33,13 @@
     1. In a command terminal window in this folder ("Window1"), type "ant run".
     2. Open another command terminal window in this folder ("Window2"), type "ant runtest".
     3. Switch back to "Window1" to see the message transformation before and after.
+    
+    Note that, as with all these Quickstarts, you can deply and run them through your local
+    JBoss Application Server instance.  To do this, skip step 1 above and in it's place 
+    execute the following Ant task:
+        "ant deployToSAR"
+    This will packagce up this Quickstart and deploy it to your JBoss AS instance.  The Quickstart
+    "Service" will automatically start then.  At that point, continue with steps 2 and 3.
 
 
 What to look at in this Quickstart:

Modified: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_simple/README.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_simple/README.txt	2007-02-01 11:07:03 UTC (rev 9247)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_simple/README.txt	2007-02-01 12:33:41 UTC (rev 9248)
@@ -7,12 +7,16 @@
     This Quickstart does not use the JBoss ESB Administration Console to manage the
     message Transformation configurations to the ESB.  See the end of this README for details on how
     to manage this Quickstart's transformations via the Console.
+    
+    Check out the Administration Console Flash demos at:
+    	http://labs.jboss.com/portal/jbossesb/resources/tutorials/xformation-demos/console-demos.html
 
 
 Before Running:
 ===============
-    1. Update the "jbosshome.dir" property in the quickstarts.properties file in "../".
-    2. Make sure the jbossesb.sar is deployed on your JBoss Application Server.
+    1. Update the "org.jboss.esb.appserver.home" property in the quickstarts.properties file in "../".
+    2. Make sure to run the the ant script in the "install" folder of the distribution.  This
+       deploys the required SARs to your JBoss Application Server instance.
     3. Make sure the JBoss Application server is running.
     4. It would be a great idea to read MessageTransformation.pdf to fully understand this
        Quickstart.  It is located in the docs/services folder.
@@ -23,6 +27,13 @@
     1. In a command terminal window in this folder ("Window1"), type "ant run".
     2. Open another command terminal window in this folder ("Window2"), type "ant runtest".
     3. Switch back to "Window1" to see the message transformation before and after.
+    
+    Note that, as with all these Quickstarts, you can deply and run them through your local
+    JBoss Application Server instance.  To do this, skip step 1 above and in it's place 
+    execute the following Ant task:
+        "ant deployToSAR"
+    This will packagce up this Quickstart and deploy it to your JBoss AS instance.  The Quickstart
+    "Service" will automatically start then.  At that point, continue with steps 2 and 3.
 
 
 What to look at in this Quickstart:




More information about the jboss-svn-commits mailing list