[jboss-svn-commits] JBL Code SVN: r16081 - in labs/jbossesb/trunk/product: services/jbossesb/src/main/resources and 1 other directory.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Oct 26 02:01:14 EDT 2007
Author: kevin.conner at jboss.com
Date: 2007-10-26 02:01:13 -0400 (Fri, 26 Oct 2007)
New Revision: 16081
Modified:
labs/jbossesb/trunk/product/samples/quickstarts/messagestore/build.xml
labs/jbossesb/trunk/product/samples/quickstarts/messagestore/readme.txt
labs/jbossesb/trunk/product/services/jbossesb/src/main/resources/message-store-ds.xml
Log:
Make message store in-vm: JBESB-1021
Modified: labs/jbossesb/trunk/product/samples/quickstarts/messagestore/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/messagestore/build.xml 2007-10-26 05:58:05 UTC (rev 16080)
+++ labs/jbossesb/trunk/product/samples/quickstarts/messagestore/build.xml 2007-10-26 06:01:13 UTC (rev 16081)
@@ -8,6 +8,10 @@
<!-- Import the base Ant build script... -->
<import file="../conf/base-build.xml"/>
+ <target name="run">
+ <echo>This quickstart no longer supports standalone execution</echo>
+ </target>
+
<target name="runtest" depends="compile"
description="sends a JMS message to queue/quickstart_messagestore_Request_gw">
<echo>Runs Test JMS Sender</echo>
Modified: labs/jbossesb/trunk/product/samples/quickstarts/messagestore/readme.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/messagestore/readme.txt 2007-10-26 05:58:05 UTC (rev 16080)
+++ labs/jbossesb/trunk/product/samples/quickstarts/messagestore/readme.txt 2007-10-26 06:01:13 UTC (rev 16081)
@@ -21,17 +21,6 @@
Please refer to 'ant help-quickstarts' for prerequisites about the quickstarts
and a more detailed descripton of the different ways to run the quickstarts.
-To Run standalone mode:
-=======================
- 1. In a command terminal window in the quickstart folder type
- 'ant deploy-jms-dests'.
- 2. In a command terminal window in this folder ("Window1"), type 'ant run'.
- 3. Open another command terminal window in this folder ("Window2"), type
- 'ant runtest'.
- 4. Switch back to "Window1" to see the output from the ESB
- 5. When finished, interrupt the ESB using Ctrl-C and, in this folder
- ("Window1"), type 'ant undeploy-jms-dests'.
-
To Run '.esb' archive mode:
===========================
1. In a command terminal window in this folder ("Window1"), type 'ant deploy'.
Modified: labs/jbossesb/trunk/product/services/jbossesb/src/main/resources/message-store-ds.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbossesb/src/main/resources/message-store-ds.xml 2007-10-26 05:58:05 UTC (rev 16080)
+++ labs/jbossesb/trunk/product/services/jbossesb/src/main/resources/message-store-ds.xml 2007-10-26 06:01:13 UTC (rev 16081)
@@ -3,11 +3,11 @@
<datasources>
<local-tx-datasource>
<jndi-name>JBossESBDS</jndi-name>
- <!-- use for in-process db
- <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}JBossESBDS</connection-url>
- -->
- <!-- use for server mode (over tcp) -->
+ <!-- use for in-process db -->
+ <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}jbossesb</connection-url>
+ <!-- use for server mode (over tcp)
<connection-url>jdbc:hsqldb:hsql://${jboss.bind.address}:9001/</connection-url>
+ -->
<driver-class>org.hsqldb.jdbcDriver</driver-class>
<user-name>sa</user-name>
<password></password>
@@ -15,20 +15,15 @@
<max-pool-size>20</max-pool-size>
<idle-timeout-minutes>0</idle-timeout-minutes>
<prepared-statement-cache-size>32</prepared-statement-cache-size>
- <!-- use for in-process db
- <depends>jboss:service=Hypersonic,database=JBossESBDS</depends>
- -->
- <!-- use for server mode (over tcp) -->
<depends>jboss:service=Hypersonic,database=jbossesb</depends>
</local-tx-datasource>
- <!-- use for in-process db
+ <!-- use for in-process db -->
<mbean code="org.jboss.jdbc.HypersonicDatabase"
- name="jboss:service=Hypersonic,database=JBossESBDS">
- <attribute name="Database">JBossESBDS</attribute>
+ name="jboss:service=Hypersonic,database=jbossesb">
+ <attribute name="Database">jbossesb</attribute>
<attribute name="InProcessMode">true</attribute>
</mbean>
- -->
- <!-- use for server mode (over tcp) -->
+ <!-- use for server mode (over tcp)
<mbean code="org.jboss.internal.soa.esb.dependencies.HypersonicDatabase"
name="jboss:service=Hypersonic,database=jbossesb">
<attribute name="Port">9001</attribute>
@@ -38,4 +33,5 @@
<attribute name="Trace">false</attribute>
<attribute name="No_system_exit">true</attribute>
</mbean>
+ -->
</datasources>
More information about the jboss-svn-commits
mailing list