[jboss-svn-commits] JBL Code SVN: r16155 - in labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts: notifications and 9 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Oct 30 08:29:59 EDT 2007


Author: tkirby
Date: 2007-10-30 08:29:58 -0400 (Tue, 30 Oct 2007)
New Revision: 16155

Added:
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/build.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/deployment.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbm-queue-service.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbmq-queue-service.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jboss-esb.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbossesb-properties.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jndi.properties
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/juddi.properties
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/lib/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/listener.log
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/log4j.xml
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/readme.txt
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/MyJMSListenerAction.java
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessage.java
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessageFromTopic.java
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendEsbMessage.java
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendJMSMessage.java
   labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/TextListener.java
Log:
Jira JBESB-1124

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/build.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/build.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/build.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,48 @@
+<project name="Quickstart_notifications" default="run" basedir=".">
+	
+	<description> 
+		${ant.project.name}
+		${line.separator}
+	</description>
+	
+	<!-- Import the base Ant build script... -->
+	<import file="../conf/base-build.xml"/>
+	
+	<target name="runtest" depends="compile" 
+		description="sends a JMS message to queue/quickstart_notifications_gw">
+		<echo>Runs Test JMS Sender</echo>
+		<java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.notifications.test.SendJMSMessage" failonerror="true">
+			<arg value="Hello from ESB-unaware JMS Client"/>
+			<classpath refid="exec-classpath"/>
+		</java>
+	</target>  
+	
+	<target name="sendesb" depends="compile"
+		description="Will send an esb Message">
+		<echo>Runs Test ESB Message Sender</echo>
+		<java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.notifications.test.SendEsbMessage" failonerror="true">
+			<arg value="NotificationService"/> <!--  service category -->
+			<arg value="SimpleNotifier"/>  <!--  service name -->
+			<arg value="Hello from ESB-aware JMS client"/> <!--  Message text -->
+			<classpath refid="exec-classpath"/>
+		</java>
+	</target>
+	
+        <target name="receive-from-queue" depends="compile">
+	        <echo>Runs Queue destination message receiver</echo>
+	        <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.notifications.test.ReceiveJMSMessage" failonerror="true">
+	            <arg value="queue/quickstart_notifications_queue"/>  
+	            <classpath refid="exec-classpath"/>
+	        </java>
+	    </target>	
+
+        <target name="receive-from-topic" depends="compile">
+	        <echo>Runs Topic destination message receiver</echo>
+	        <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.notifications.test.ReceiveJMSMessageFromTopic" failonerror="true">
+	            <arg value="topic/quickstart_notifications_topic"/>  
+	            <classpath refid="exec-classpath"/>
+	        </java>
+	    </target>	
+
+
+</project>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/deployment.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/deployment.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/deployment.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,6 @@
+<jbossesb-deployment>
+  <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_esb</depends>
+  <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_gw</depends>
+  <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_queue</depends>
+  <depends>jboss.esb.quickstart.destination:service=Topic,name=quickstart_notifications_topic</depends>
+</jbossesb-deployment>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbm-queue-service.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbm-queue-service.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbm-queue-service.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<server>
+  <!-- Queue to support JMS gateway to service -->
+  <mbean code="org.jboss.jms.server.destination.QueueService"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_esb"
+    xmbean-dd="xmdesc/Queue-xmbean.xml">
+	<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+	<depends>jboss.messaging:service=PostOffice</depends>
+  </mbean>
+
+  <!-- Queue to support JMS listener to service -->
+  <mbean code="org.jboss.jms.server.destination.QueueService"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_gw"
+    xmbean-dd="xmdesc/Queue-xmbean.xml">
+    <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+	<depends>jboss.messaging:service=PostOffice</depends>
+  </mbean>
+
+  <!-- Queue to receive notifications -->
+  <mbean code="org.jboss.jms.server.destination.QueueService"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_queue"
+    xmbean-dd="xmdesc/Queue-xmbean.xml">
+	<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+	<depends>jboss.messaging:service=PostOffice</depends>
+  </mbean>
+
+  <!-- Topic to receive notifications -->
+  <mbean code="org.jboss.jms.server.destination.TopicService"
+    name="jboss.esb.quickstart.destination:service=Topic,name=quickstart_notifications_topic"
+    xmbean-dd="xmdesc/Topic-xmbean.xml">
+    <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+	<depends>jboss.messaging:service=PostOffice</depends>
+  </mbean>
+
+</server>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbmq-queue-service.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbmq-queue-service.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbmq-queue-service.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<server>
+
+  <!-- Queue to support JMS gateway to service -->
+  <mbean code="org.jboss.mq.server.jmx.Queue"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_esb">
+    <depends optional-attribute-name="DestinationManager">
+      jboss.mq:service=DestinationManager
+    </depends>
+  </mbean>
+
+  <!-- Queue to support JMS listener to service -->
+  <mbean code="org.jboss.mq.server.jmx.Queue"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_gw">
+    <depends optional-attribute-name="DestinationManager">
+      jboss.mq:service=DestinationManager
+    </depends>
+  </mbean>
+
+  <!-- Queue to receive notifications -->
+  <mbean code="org.jboss.mq.server.jmx.Queue"
+    name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_notifications_queue">
+    <depends optional-attribute-name="DestinationManager">
+      jboss.mq:service=DestinationManager
+    </depends>
+  </mbean>
+
+  <!-- Topic to receive notifications -->
+  <mbean code="org.jboss.mq.server.jmx.Topic"
+    name="jboss.esb.quickstart.destination:service=Topic,name=quickstart_notifications_topic">
+    <depends optional-attribute-name="DestinationManager">
+      jboss.mq:service=DestinationManager
+    </depends>
+  </mbean>
+
+</server>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jboss-esb.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jboss-esb.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jboss-esb.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,114 @@
+<?xml version = "1.0" encoding = "UTF-8"?>
+<jbossesb xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd" parameterReloadSecs="5">
+
+    <providers>
+          <jms-provider name="JBossMQ" 
+	                connection-factory="ConnectionFactory"
+                        jndi-URL="jnp://127.0.0.1:1099" 
+                        jndi-context-factory="org.jnp.interfaces.NamingContextFactory"
+                        jndi-pkg-prefix="org.jboss.naming:org.jnp.interfaces">
+                      
+              <jms-bus busid="NotificationGwChannel">
+                  <jms-message-filter
+                      dest-type="QUEUE"
+                      dest-name="queue/quickstart_notifications_gw"
+                   />
+              </jms-bus>
+              <jms-bus busid="NotificationEsbChannel">
+                  <jms-message-filter
+                      dest-type="QUEUE"
+                      dest-name="queue/quickstart_notifications_esb"
+                  />
+              </jms-bus>
+          </jms-provider>
+      </providers>
+      
+      <services>
+        <service category="NotificationService" name="SimpleNotifier" description="Tests ESB Notifications">
+
+            <listeners>
+	        <!-- Define a JMS gateway -->
+                <jms-listener name="JMS-Gateway" 
+		              busidref="NotificationGwChannel" 
+			      maxThreads="1" 
+			      is-gateway="true"/>
+
+		<!-- Define a JMS listener -->
+                <jms-listener name="JMS-Listener"
+                              busidref="NotificationEsbChannel"
+                              maxThreads="1"/>
+            </listeners>
+
+            <actions>
+
+              <action name="notificationTest" class="org.jboss.soa.esb.actions.Notifier">
+
+                 <property name="okMethod" value="notifyOK" />
+                 <property name="notification-details">
+
+                   <NotificationList type="OK">
+
+		       <!-- send notification to console -->
+                       <target class="NotifyConsole" />
+
+		       <!-- send notification to the specified queue -->
+                       <target class="NotifyQueues">
+		         <messageProp name="quickstart" value="some property" />
+                         <queue jndiName="queue/quickstart_notifications_queue">
+                         </queue>
+                       </target>
+
+		       <!-- send notification to the specified topic -->
+                       <target class="NotifyTopics">
+		         <messageProp name="quickstart" value="some property" />
+                         <topic jndiName="topic/quickstart_notifications_topic">
+                         </topic>
+                       </target>
+
+		       <!-- send notification to email 
+                       <target class="NotifyEmail" 
+		               from="person at server.com" 
+                               sendTo="person at server.com"
+			       ccTo="person at server.com"
+			       subject="This is the subject" 
+			       message="Message Header">
+			  <attachment>someFileToAttach.ext</attachment>
+		       </target>
+		       -->
+
+		       <!-- send notification to file 
+                       <target class="NotifyFiles"> 
+		         <file append="false" URI="@results.dir@/filenotification.log"/>
+		       </target>
+		       -->
+
+		       <!-- send notification to database table -->
+		       <!-- This requires a database table with columns (Column1, Column2, MessageContents)-->
+		       <!-- and appropriate user access
+                       <target class="NotifySqlTable"
+		               driver-class="com.mysql.jdbc.Driver"
+			       connection-url="jdbc:mysql://localhost/notifytest"
+			       user-name="notifier"
+			       password="notifier"
+			       table="notifications"
+			       dataColumn="MessageContents"> 
+		         <column name="Column1" value="1"/>
+		         <column name="Column2" value="2"/>
+		       </target>
+		       -->
+
+		       <!-- send notification to FTP server by way of file transfer -->
+		       <!-- this requires an active ftp server with appropriate user account 
+                       <target class="NotifyFTP"
+		         <ftp URL="ftp://username:pwd@server.com/remote/dir" filename="{jboss.message.id}.txt"/>
+		       </target>
+		       -->
+
+                   </NotificationList>
+                 </property>
+               </action>               
+            </actions>
+        </service>
+      </services>
+     
+</jbossesb>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbossesb-properties.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbossesb-properties.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jbossesb-properties.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  JBoss, Home of Professional Open Source
+  Copyright 2006, JBoss Inc., and others contributors as indicated 
+  by the @authors tag. All rights reserved. 
+  See the copyright.txt in the distribution for a
+  full listing of individual contributors. 
+  This copyrighted material is made available to anyone wishing to use,
+  modify, copy, or redistribute it subject to the terms and conditions
+  of the GNU Lesser General Public License, v. 2.1.
+  This program is distributed in the hope that it will be useful, but WITHOUT A 
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+  You should have received a copy of the GNU Lesser General Public License,
+  v.2.1 along with this distribution; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  MA  02110-1301, USA.
+  
+  (C) 2005-2006,
+  @author JBoss Inc.
+-->
+<!-- $Id: jbossesb-unittest-properties.xml $ -->
+<!--
+  These options are described in the JBossESB manual.
+  Defaults are provided here for convenience only.
+ 
+  Please read through this file prior to using the system, and consider
+  updating the specified entries.
+-->
+<esb
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:noNamespaceSchemaLocation="jbossesb-1_0.xsd">
+    <properties name="core">
+		<property name="org.jboss.soa.esb.jndi.server.type" value="jboss"/>
+		<property name="org.jboss.soa.esb.jndi.server.url" value="localhost"/>
+		<property name="org.jboss.soa.esb.persistence.connection.factory" 	value="org.jboss.internal.soa.esb.persistence.format.MessageStoreFactoryImpl"/>
+    </properties>
+    <properties name="registry">      
+    	<property name="org.jboss.soa.esb.registry.queryManagerURI"     		
+    		value="jnp://localhost:1099/InquiryService?org.apache.juddi.registry.rmi.Inquiry#inquire"/>    		
+    	<property name="org.jboss.soa.esb.registry.lifeCycleManagerURI"     		
+    		value="jnp://localhost:1099/PublishService?org.apache.juddi.registry.rmi.Publish#publish" />
+    	<property name="org.jboss.soa.esb.registry.implementationClass" 
+    		value="org.jboss.internal.soa.esb.services.registry.JAXRRegistryImpl"/>
+    	<property name="org.jboss.soa.esb.registry.factoryClass" 
+    		value="org.apache.ws.scout.registry.ConnectionFactoryImpl"/>
+    	<property name="org.jboss.soa.esb.registry.user" 
+    		value="jbossesb"/>
+    	<property name="org.jboss.soa.esb.registry.password" 
+    	  value="password"/>
+    	<!-- the following parameter is scout specific to set the type of communication between scout and the UDDI (embedded, rmi, soap) -->
+    	<property name="org.jboss.soa.esb.scout.proxy.transportClass" 
+    		value="org.apache.ws.scout.transport.RMITransport"/>
+    </properties>
+    <properties name="transports" depends="core">
+    	<property name="org.jboss.soa.esb.mail.smtp.host" value="localhost"/>
+    	<property name="org.jboss.soa.esb.mail.smtp.user" value="jbossesb"/>
+    	<property name="org.jboss.soa.esb.mail.smtp.password" value=""/>
+    	<property name="org.jboss.soa.esb.mail.smtp.port" value="25"/>
+    </properties>
+    <properties name="connection">
+    	<property name="min-pool-size" value="5"/>
+    	<property name="max-pool=size" value="10"/>
+    	<property name="blocking-timeout-millis" value="5000"/>
+    	<property name="abandoned-connection-timeout" value="10000"/>
+    	<property name="abandoned-connection-time-interval" value="30000"/>
+    </properties>
+    <properties name="dbstore">
+		<property name="org.jboss.soa.esb.persistence.db.connection.url" 	value="jdbc:hsqldb:hsql://localhost:9001/"/>
+		<property name="org.jboss.soa.esb.persistence.db.jdbc.driver" 		value="org.hsqldb.jdbcDriver"/>
+		<property name="org.jboss.soa.esb.persistence.db.user" 			value="sa"/>
+		<property name="org.jboss.soa.esb.persistence.db.pwd" 			value=""/>		
+		<property name="org.jboss.soa.esb.persistence.db.pool.initial.size"	value="2"/>
+		<property name="org.jboss.soa.esb.persistence.db.pool.min.size"	value="2"/>
+		<property name="org.jboss.soa.esb.persistence.db.pool.max.size"	value="5"/>
+		<!--table managed by pool to test for valid connections - created by pool automatically -->
+		<property name="org.jboss.soa.esb.persistence.db.pool.test.table"	value="pooltest"/>
+		<!-- # of milliseconds to timeout waiting for a connection from pool -->
+		<property name="org.jboss.soa.esb.persistence.db.pool.timeout.millis"	value="5000"/> 
+                <property name="org.jboss.soa.esb.persistence.db.conn.manager" value="org.jboss.internal.soa.esb.persistence.manager.StandaloneConnectionManager"/>
+    </properties>
+    <properties name="messagerouting">
+    	<property name="org.jboss.soa.esb.routing.cbrClass" value="org.jboss.internal.soa.esb.services.routing.cbr.JBossRulesRouter"/>
+    </properties>
+</esb>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jndi.properties
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jndi.properties	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/jndi.properties	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,5 @@
+java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.provider.url=jnp://localhost:1099
+java.naming.factory.url.pkgs=org.jboss.naming
+java.naming.factory.url.pkgs=org.jnp.interfaces
+

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/juddi.properties
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/juddi.properties	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/juddi.properties	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,69 @@
+# jUDDI Registry Properties (used by RegistryServer)
+# see http://www.juddi.org for more information
+
+# The UDDI Operator Name
+juddi.operatorName = jUDDI.org
+
+# The i18n locale default codes
+juddi.i18n.languageCode = en
+juddi.i18n.countryCode = US
+
+# The UDDI DiscoveryURL Prefix
+juddi.discoveryURL = http://localhost:8080/juddi/uddiget.jsp?
+
+# The UDDI Operator Contact Email Address
+juddi.operatorEmailAddress = admin at juddi.org
+
+# The maximum name size and maximum number
+# of name elements allows in several of the
+# FindXxxx and SaveXxxx UDDI functions.
+juddi.maxNameLength=255
+juddi.maxNameElementsAllowed=5
+
+# The maximum number of UDDI artifacts allowed
+# per publisher. A value of '-1' indicates any 
+# number of artifacts is valid (These values can be
+# overridden at the individual publisher level).
+juddi.maxBusinessesPerPublisher=25
+juddi.maxServicesPerBusiness=20
+juddi.maxBindingsPerService=10
+juddi.maxTModelsPerPublisher=100
+
+# jUDDI Authentication module to use
+juddi.auth = org.apache.juddi.auth.DefaultAuthenticator
+
+# jUDDI DataStore module currently to use
+juddi.dataStore = org.apache.juddi.datastore.jdbc.JDBCDataStore
+
+# use a dataSource (if set to false a direct 
+# jdbc connection will be used.
+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
+
+# jUDDI UUIDGen implementation to use
+juddi.uuidgen = org.apache.juddi.uuidgen.DefaultUUIDGen
+
+# jUDDI Cryptor implementation to use
+juddi.cryptor = org.apache.juddi.cryptor.DefaultCryptor
+ 
+# jUDDI Validator to use
+juddi.validator=org.apache.juddi.validator.DefaultValidator
+
+# jUDDI Proxy Properties (used by RegistryProxy)
+juddi.proxy.adminURL = http://localhost:8080/juddi/admin
+juddi.proxy.inquiryURL = http://localhost:8080/juddi/inquiry
+juddi.proxy.publishURL = http://localhost:8080/juddi/publish
+juddi.proxy.transportClass = org.apache.juddi.proxy.AxisTransport
+juddi.proxy.securityProvider = com.sun.net.ssl.internal.ssl.Provider
+juddi.proxy.protocolHandler = com.sun.net.ssl.internal.www.protocol
+
+# JNDI settings (used by RMITransport)
+java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.provider.url=jnp://localhost:1099
+java.naming.factory.url.pkgs=org.jboss.naming
+  

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/listener.log
===================================================================

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/log4j.xml
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/log4j.xml	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/log4j.xml	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!--                                                                       -->
+<!--  Log4j Configuration                                                  -->
+<!--                                                                       -->
+<!-- ===================================================================== -->
+
+<!-- $Id: log4j.xml,v 1.26.2.5 2005/09/15 09:31:02 dimitris Exp $ -->
+
+<!--
+   | For more configuration infromation and examples see the Jakarta Log4j
+   | owebsite: http://jakarta.apache.org/log4j
+ -->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+   <!-- ============================== -->
+   <!-- Append messages to the console -->
+   <!-- ============================== -->
+
+   <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+      <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+      <param name="Target" value="System.out"/>
+      <param name="Threshold" value="INFO"/>
+
+      <layout class="org.apache.log4j.PatternLayout">
+         <!-- The default pattern: Date Priority [Category] Message\n -->
+         <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%t][%c{1}] %m%n"/>
+      </layout>
+   </appender>
+
+   <!-- ================================= -->
+   <!-- Preserve messages in a local file -->
+   <!-- ================================= -->
+
+   <!-- A size based file rolling appender -->
+   <appender name="FILE" class="org.jboss.logging.appender.RollingFileAppender">
+     <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+     <param name="File" value="./listener.log"/>
+     <param name="Append" value="false"/>
+     <param name="MaxFileSize" value="500KB"/>
+     <param name="MaxBackupIndex" value="1"/>
+
+     <layout class="org.apache.log4j.PatternLayout">
+       <param name="ConversionPattern" value="%d %-5p [%t][%c] %m%n"/>
+     </layout>	    
+   </appender>
+
+   <!-- ================ -->
+   <!-- Limit categories -->
+   <!-- ================ -->
+
+   <category name="org.jboss">
+      <priority value="WARN"/>
+   </category>
+   <category name="org.jboss.soa.esb">
+      <priority value="ERROR"/>
+   </category>
+   <category name="org.jboss.internal.soa.esb">
+      <priority value="ERROR"/>
+   </category>
+   <category name="org.apache">
+      <priority value="ERROR"/>
+   </category>
+   <category name="quickstart">
+      <priority value="DEBUG"/>
+   </category>
+   <!-- ======================= -->
+   <!-- Setup the Root category -->
+   <!-- ======================= -->
+
+   <root>
+      <appender-ref ref="CONSOLE"/>
+      <appender-ref ref="FILE"/>
+   </root>
+
+</log4j:configuration>

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/readme.txt
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/readme.txt	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/readme.txt	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,78 @@
+Overview:
+=========
+  The purpose of the notifications quickstart sample is to demonstrate how to 
+  use the various Notifier classes. This quickstaart provides a client with
+  the ability to send a message to the NotificationService/SimpleNotifier 
+  service and receive notifications of various types.
+
+  The following notification scenarios are demonstrated:
+  
+  NotifyConsole
+  NotifyEmail*
+  NotifyQueue
+  NotifyTopic
+  NotifyFTP*
+  NotifyFiles*
+  NotifySQLTable*
+  
+
+  All of the notification scenarios with asterisk have been disbled by
+  being commented out in jboss-esb.xml. You can enable them for execution by 
+  removing the comments. Some of these scenarios require additional software 
+  to be setup:
+
+  NotifyFTP - requires an FTP server to be avilable for use
+  NotifySQLTable - requires an SQL database with certain tables to be avilable
+
+  See the jboss-esb.xml file for more details on these requirements.
+
+  NotifyConsole will write the contents of the ESB message to the Application
+  Server console. NotifyQueue will translate the ESB message into a JMS 
+  message and send it to the Queue "queue/quickstarts_notifications_queue". 
+  NotifyTopic will translate the ESB message into a JMS 
+  message and publish it to the Topic "topic/quickstarts_notifications_topic"
+
+Running this quickstart:
+========================
+  Please refer to 'ant help-quickstarts' for prerequisites about the quickstart
+  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'
+     to deploy the archive quickstart_notifications.esb. This will also
+     deploy the necessary queues and topics for the quickstart.
+  2. In another command terminal window in this folder ("Window2"), type
+     'ant receive-from-queue'. This will start a process to receive messages
+     sent to the Queue 'queue/quickstart_notifications_queue'. 
+  3. In another command terminal window in this folder ("Window3"), type
+     'ant receive-from-topic'. This will start a process to receive messages
+     sent to the Topic 'topic/quickstart_notifications_topic'. 
+  4. Open another command terminal window in this folder ("Window4"), type
+     'ant runtest'. 
+  5. Switch back to Application Server console to see the output from the ESB
+  6. You should see notification messages received by the Queue in Window2 and 
+     the Topic in Window3. For example, in the case of ("Window2"):
+
+     [echo] Runs Queue destination message receiver
+     [java] Receiving on: queue/quickstart_notifications_queue
+     [java] Initialised
+     [java] *********************************************************
+     [java] Hello from ESB-unaware JMS Client
+     [java] *********************************************************
+
+  7. In ("Window2"), type Ctrl-C to kill the process listening on the Queue.
+  8. In ("Window3"), type Ctrl-C to kill the process listening on the Topic.
+  9. In this folder ("Window1"), type 'ant undeploy' to undeploy the ESB
+     archive from the ESB.

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/MyJMSListenerAction.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/MyJMSListenerAction.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/MyJMSListenerAction.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,45 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.notifications ;
+
+import org.jboss.soa.esb.actions.AbstractActionLifecycle;
+import org.jboss.soa.esb.helpers.ConfigTree;
+import org.jboss.soa.esb.message.Message;
+
+public class MyJMSListenerAction extends AbstractActionLifecycle
+{
+    
+  protected ConfigTree	_config;
+	  
+  public MyJMSListenerAction(ConfigTree config) { _config = config; } 
+
+  
+  public Message displayMessage(Message message) throws Exception{
+		
+		  System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");		  		  
+		  System.out.println("Body: " + new String(message.getBody().getByteArray()));
+		  System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
+		  return message; 
+        		
+	}
+    
+	
+}
\ No newline at end of file

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessage.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessage.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessage.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,124 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.notifications.test;
+
+import javax.jms.Queue;
+import javax.jms.QueueConnection;
+import javax.jms.QueueConnectionFactory;
+import javax.jms.QueueReceiver;
+import javax.jms.QueueSession;
+import javax.jms.TextMessage;
+import javax.naming.InitialContext;
+
+public class ReceiveJMSMessage {
+
+           QueueConnection conn = null;    
+           QueueSession receiverSession = null;    
+           Queue receiverQueue = null;     
+           QueueReceiver queueReceiver = null;
+           InitialContext iniCtx = null;
+           QueueConnectionFactory qcf = null;
+           String receiveQueueName = "queue/D"; // Default to queue/D
+           private boolean initialised ;
+
+           public ReceiveJMSMessage() {
+                   
+           }
+           public void receiveOne() {
+               if (!initialised) {
+                   initialise() ;
+               }
+               
+               if (receiverQueue != null) {
+                  try {
+                      TextMessage msg = (TextMessage) queueReceiver.receive();
+                      if (msg != null) {
+	    		  System.out.println("*********************************************************");
+	    		  System.out.println(msg.getText());
+	    		  System.out.println("*********************************************************");
+                      }
+                  } catch (final Exception ex) {
+                      cleanup() ;
+                      System.out.println(ex.getMessage()) ;
+                  }
+               }
+               
+               if (!initialised) {
+                   System.out.println("Pausing before reinitialising") ;
+                   try {
+                       Thread.sleep(5000) ;
+                   } catch (final InterruptedException ie) {
+                       // do nothing
+                   }
+               }
+           }
+
+           private void initialise()
+           {
+               try {
+                  if (iniCtx == null) iniCtx = new InitialContext();
+                  if (qcf == null) qcf = (QueueConnectionFactory) iniCtx.lookup("ConnectionFactory");
+                  if (conn == null) {
+                      conn = qcf.createQueueConnection();
+                      conn.start();
+                  }             
+                  receiverQueue = (Queue) iniCtx.lookup(receiveQueueName);
+                  receiverSession = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
+                  queueReceiver = receiverSession.createReceiver(receiverQueue);
+                  initialised = true ;
+                  System.out.println("Initialised") ;
+               } catch (final Exception ex) {
+                   cleanup() ;
+               }
+           }
+           
+           public void cleanup() {
+               queueReceiver = null ;
+               receiverSession = null ;
+               receiverQueue = null ;
+               try {
+                   conn.stop() ;
+               } catch (final Exception ex) {
+                   // Do nothing ;
+               }
+               conn = null ;
+               qcf = null ;
+               iniCtx = null ;
+               initialised = false ;
+           }
+           
+           public static void main(String[] args) {
+		      final ReceiveJMSMessage receiver = new ReceiveJMSMessage();
+                      
+		      if ((args.length > 0) && (args[0] != null)) {
+                          receiver.receiveQueueName = args[0];
+                          System.out.println("Receiving on: " + receiver.receiveQueueName );                     
+                      }                   
+                      Runtime.getRuntime().addShutdownHook(new Thread() {
+                          public void run() {
+                              receiver.cleanup() ;
+                          }
+                      }) ;
+                      while (true) { // loop until I'm killed
+                          receiver.receiveOne();
+                      }
+           }
+}

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessageFromTopic.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessageFromTopic.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/ReceiveJMSMessageFromTopic.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,129 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.notifications.test;
+
+import javax.jms.Topic;
+import javax.jms.TopicConnection;
+import javax.jms.TopicConnectionFactory;
+import javax.jms.TopicSubscriber;
+import javax.jms.TopicSession;
+import javax.jms.TextMessage;
+import javax.jms.JMSException;
+import javax.naming.InitialContext;
+
+import org.jboss.soa.esb.samples.quickstart.notifications.test.TextListener;
+
+public class ReceiveJMSMessageFromTopic {
+
+    TopicConnectionFactory tcf = null;
+    TopicConnection conn = null;    
+    TopicSession session = null;    
+    Topic topic = null;     
+    TopicSubscriber subscriber = null;
+    InitialContext iniCtx = null;
+    String topicName = "topic/D"; // Default to topic/D
+    TextListener listener = null ;
+
+    private boolean initialised ;
+
+    public ReceiveJMSMessageFromTopic() {
+                   
+    }
+
+    private void initialise()
+    {
+	try {
+	    // lookup the TopicConnectionFactory
+	    if (iniCtx == null) iniCtx = new InitialContext();
+	    if (tcf == null) tcf = (TopicConnectionFactory) iniCtx.lookup("ConnectionFactory");
+
+	    // create and start a connection to JMS suitable for interacting with topics
+	    if (conn == null) {
+		conn = tcf.createTopicConnection();
+		// conn.start();
+	    }             
+
+	    // look up the Topic we want to subscribe to and create a TopicSession
+	    // for that topic
+	    topic = (Topic) iniCtx.lookup(topicName);
+	    session = conn.createTopicSession(false, TopicSession.AUTO_ACKNOWLEDGE);
+
+	    // create a TopicSubscriber to the Topic within the TopicSession
+	    subscriber = session.createSubscriber(topic);
+
+	    initialised = true ;
+	    System.out.println("Initialised") ;
+	} catch (final Exception ex) {
+	    cleanup() ;
+	}
+    }
+           
+    public void cleanup() {
+	subscriber = null ;
+	session = null ;
+	topic = null ;
+	try {
+	    conn.stop() ;
+	} catch (final Exception ex) {
+	    // Do nothing ;
+	}
+	conn = null ;
+	tcf = null ;
+	iniCtx = null ;
+	initialised = false ;
+    }
+           
+    public static void main(String[] args) {
+
+	// create an instance of our helper object
+	final ReceiveJMSMessageFromTopic topicHelper = new ReceiveJMSMessageFromTopic();
+                      
+	if ((args.length > 0) && (args[0] != null)) {
+	    topicHelper.topicName = args[0];
+	    System.out.println("Receiving on: " + topicHelper.topicName );                     
+	}                   
+	Runtime.getRuntime().addShutdownHook(new Thread() {
+		public void run() {
+		    topicHelper.cleanup() ;
+		}
+	    }) ;
+
+	// init the helper object
+	topicHelper.initialise() ;
+
+	try {
+	    // set a TextListener to process pubnlished messages asynchronously
+	    topicHelper.listener = new TextListener() ;
+	    topicHelper.subscriber.setMessageListener(topicHelper.listener) ;
+
+	    // make the connection active 
+	    topicHelper.conn.start() ;
+	    
+	    // TextListener will now pull messages ad infinitum
+	    // shutdown hook will be called at Ctrl-C
+	}
+	catch(JMSException e) {
+	    System.out.println("Exception occurred: " + e.toString()) ;
+	    
+	}
+    }
+}
+

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendEsbMessage.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendEsbMessage.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendEsbMessage.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,59 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.soa.esb.samples.quickstart.notifications.test;
+
+import org.jboss.soa.esb.message.Message;
+import org.jboss.soa.esb.message.format.MessageFactory;
+import org.jboss.soa.esb.client.ServiceInvoker;
+
+/**
+ * Standalone class with to send ESB messages to a 'known' [category,name].
+ * <p/> arg0 - service category
+ * <br/>arg1 - service name
+ * <br/>arg2 - Text of message to send
+ * 
+ * @author <a href="mailto:schifest at heuristica.com.ar">schifest at heuristica.com.ar</a>
+ * @since Version 4.0
+ *
+ */
+public class SendEsbMessage 
+{
+    public static void main(String args[]) throws Exception
+    {
+//      Setting the ConnectionFactory such that it will use scout
+        System.setProperty("javax.xml.registry.ConnectionFactoryClass","org.apache.ws.scout.registry.ConnectionFactoryImpl");
+        
+    	if (args.length < 3)
+    	{
+    		System.out.println("Usage SendEsbMessage <category> <name> <text to send>");
+    	}
+    	
+    	Message esbMessage = MessageFactory.getInstance().getMessage();
+
+    	esbMessage.getBody().setByteArray(args[2].getBytes());
+    	
+        new ServiceInvoker(args[0], args[1]).deliverAsync(esbMessage);
+    	
+    }
+    
+}
\ No newline at end of file

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendJMSMessage.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendJMSMessage.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/SendJMSMessage.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,87 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.notifications.test;
+
+import java.util.Properties;
+
+import javax.jms.JMSException;
+import javax.jms.ObjectMessage;
+import javax.jms.Queue;
+import javax.jms.QueueConnection;
+import javax.jms.QueueConnectionFactory;
+import javax.jms.QueueSender;
+import javax.jms.QueueSession;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+public class SendJMSMessage {
+    QueueConnection conn;
+    QueueSession session;
+    Queue que;
+    
+    
+    public void setupConnection() throws JMSException, NamingException
+    {
+        Properties properties1 = new Properties();
+		properties1.put(Context.INITIAL_CONTEXT_FACTORY,
+				"org.jnp.interfaces.NamingContextFactory");
+		properties1.put(Context.URL_PKG_PREFIXES,
+				"org.jboss.naming:org.jnp.interfaces");
+		properties1.put(Context.PROVIDER_URL, "jnp://127.0.0.1:1099");
+		InitialContext iniCtx = new InitialContext(properties1);
+
+    	Object tmp = iniCtx.lookup("ConnectionFactory");
+    	QueueConnectionFactory qcf = (QueueConnectionFactory) tmp;
+    	conn = qcf.createQueueConnection();
+    	que = (Queue) iniCtx.lookup("queue/quickstart_notifications_gw");
+    	session = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
+    	conn.start();
+    	System.out.println("Connection Started");
+    }
+    
+    public void stop() throws JMSException 
+    { 
+        conn.stop();
+        session.close();
+        conn.close();
+    }
+    
+    public void sendAMessage(String msg) throws JMSException {
+    	
+        QueueSender send = session.createSender(que);        
+        ObjectMessage tm = session.createObjectMessage(msg);
+        
+        send.send(tm);        
+        send.close();
+    }
+       
+    
+    public static void main(String args[]) throws Exception
+    {        	    	
+    	SendJMSMessage sm = new SendJMSMessage();
+    	sm.setupConnection();
+    	sm.sendAMessage(args[0]); 
+    	sm.stop();
+    	
+    }
+    
+}

Added: labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/TextListener.java
===================================================================
--- labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/TextListener.java	                        (rev 0)
+++ labs/jbossesb/workspace/platform/JBESB_4_2_1_IR2/product/samples/quickstarts/notifications/src/org/jboss/soa/esb/samples/quickstart/notifications/test/TextListener.java	2007-10-30 12:29:58 UTC (rev 16155)
@@ -0,0 +1,36 @@
+package org.jboss.soa.esb.samples.quickstart.notifications.test ;
+
+import javax.jms.MessageListener ;
+import javax.jms.Message ;
+import javax.jms.TextMessage ;
+import javax.jms.JMSException ;
+
+/**
+ * This class is used by a topic subscriber to receive messages sent to 
+ * the topic asynchronously and print out the contents.
+ */
+public class TextListener implements MessageListener {
+
+    public void onMessage(Message message) {
+
+	TextMessage msg = null ;
+
+	try {
+	    if (message instanceof TextMessage) {
+		msg = (TextMessage) message ;
+		
+		if (msg != null) {
+		    System.out.println("******************************************************************") ;
+		    System.out.println(msg.getText()) ;
+		    System.out.println("******************************************************************") ;
+		}
+	    }
+	}
+	catch(JMSException e) {
+	    System.out.println("JMSException in onMessage(): " + e.toString()) ;
+	}
+	catch(Throwable t) {
+	    System.out.println("Exception in onMessage(): " + t.getMessage()) ;
+	}
+    }
+}
\ No newline at end of file




More information about the jboss-svn-commits mailing list