[jboss-svn-commits] JBL Code SVN: r17290 - in labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2: src/org/jboss/soa/esb/samples/quickstart/webservice_consumer2/test and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Dec 17 14:35:16 EST 2007


Author: tcunning
Date: 2007-12-17 14:35:16 -0500 (Mon, 17 Dec 2007)
New Revision: 17290

Modified:
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/readme.txt
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/src/org/jboss/soa/esb/samples/quickstart/webservice_consumer2/test/SendEsbMessage.java
Log:
bug:JBESB-1409
Added a working SendJMSMessage (this shouldn't be removed because
it is used in CI and because it's standard throughout the QS's to have 
a way of doing both ESB/JMS messages), and cleared up the inconsistencies
with the readme.txt.      Changing the payload location seems like it is
adding additional complexity that we don't really need. 


Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/readme.txt
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/readme.txt	2007-12-17 19:02:28 UTC (rev 17289)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/readme.txt	2007-12-17 19:35:16 UTC (rev 17290)
@@ -89,7 +89,7 @@
 	org.jboss.soa.esb.actions.soap.SOAPClient
 	This class is used to make the call to the webservice. It will take the
 	parameters that MyRequestAction set in "paramsLocation", call the webservice, then place
-	the response in "responseLocation". This is zero Java code ESB wiring in jboss-esb.xml.
+	the response in the default location. 
 	
 	src/../MyResponseAction.java
 	Retrieve the webservice response and display it on the console.	The response location name

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/src/org/jboss/soa/esb/samples/quickstart/webservice_consumer2/test/SendEsbMessage.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/src/org/jboss/soa/esb/samples/quickstart/webservice_consumer2/test/SendEsbMessage.java	2007-12-17 19:02:28 UTC (rev 17289)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/webservice_consumer2/src/org/jboss/soa/esb/samples/quickstart/webservice_consumer2/test/SendEsbMessage.java	2007-12-17 19:35:16 UTC (rev 17290)
@@ -49,7 +49,7 @@
       
       // Deliver the request message synchronously - timeout after 20
       // seconds...
-      Message replyMessage = deliveryAdapter.deliverSync(requestMessage, 20000);
+      deliveryAdapter.deliverAsync(requestMessage);
 
       // need to cleanup connection pool for service invoker
       //deliveryAdapter.close();




More information about the jboss-svn-commits mailing list