[jboss-svn-commits] JBL Code SVN: r20834 - in labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product: samples/quickstarts/huge-split-enrich-transform-route and 1 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sat Jun 28 05:27:01 EDT 2008


Author: tfennelly
Date: 2008-06-28 05:27:01 -0400 (Sat, 28 Jun 2008)
New Revision: 20834

Modified:
   labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/rosetta/src/org/jboss/soa/esb/listeners/StandAloneBootStrapper.java
   labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/01_split_enrich_transform_route/jbossesb.xml
   labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/README.html
Log:
4th part of http://jira.jboss.com/jira/browse/JBESB-1853

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/rosetta/src/org/jboss/soa/esb/listeners/StandAloneBootStrapper.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/rosetta/src/org/jboss/soa/esb/listeners/StandAloneBootStrapper.java	2008-06-27 21:17:13 UTC (rev 20833)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/rosetta/src/org/jboss/soa/esb/listeners/StandAloneBootStrapper.java	2008-06-28 09:27:01 UTC (rev 20834)
@@ -29,6 +29,7 @@
 import org.apache.log4j.xml.DOMConfigurator;
 import org.jboss.internal.soa.esb.util.Exit;
 import org.jboss.soa.esb.ConfigurationException;
+import org.jboss.soa.esb.services.registry.RegistryFactory;
 import org.jboss.soa.esb.lifecycle.LifecycleResourceManager;
 import org.jboss.soa.esb.listeners.config.ConfigurationController;
 
@@ -197,6 +198,13 @@
 			throw new IllegalArgumentException(
 					"Null configuration file specified");
 
+        try {
+            RegistryFactory.setRegistry(RegistryFactory.createRegistry());
+        } catch (Exception e) {
+            // Allowing it to continue for backward compatibility reasons....
+            _logger.error("Failed to install Registry.", e);
+        }
+
 		File configFile = new File(configName);
 		if (!configFile.exists())
 			throw new IllegalArgumentException(

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/01_split_enrich_transform_route/jbossesb.xml
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/01_split_enrich_transform_route/jbossesb.xml	2008-06-27 21:17:13 UTC (rev 20833)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/01_split_enrich_transform_route/jbossesb.xml	2008-06-28 09:27:01 UTC (rev 20834)
@@ -31,7 +31,7 @@
         </actions>
     </service>
 
-    <service category="HugeQS" name="04_Reptiles_notify_webservice_proxy" description="Routes the SOAP requests to the 'Reptiles Notification' Webservice">
+    <service category="HugeQS" name="04_Reptiles_notify_webservice_proxy" description="Routes the SOAP requests to the 'Reptiles Notification' Webservice" invmScope="GLOBAL">
         <actions mep="OneWay">
             <action name="httprouter" class="org.jboss.soa.esb.actions.routing.http.HttpRouter">
                 <property name="endpointUrl" value="http://127.0.0.1:8080/Quickstart_Huge_Enrich_Split_Transform_Route/ReptilesNotifyWS" />

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/README.html
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/README.html	2008-06-27 21:17:13 UTC (rev 20833)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_FP/product/samples/quickstarts/huge-split-enrich-transform-route/README.html	2008-06-28 09:27:01 UTC (rev 20834)
@@ -135,7 +135,7 @@
                 <li>"ant 01_split_enrich_transform_route"</li>
                 <li>"ant 02_Low_Price"</li>
                 <li>"ant 03_High_Price"</li>
-                <li>"ant 04_Reptiles_notify_webservice_proxy" (this just builds and deploys the Webservice)</li>
+                <li>"ant 04_Reptiles_notify_webservice" (this just builds and deploys the Webservice)</li>
             </ul>
         </li>
         <li>In the 6th command shell window, type "ant createMessage" to execute the message creation




More information about the jboss-svn-commits mailing list