Author: gnodet
Date: Fri Sep  8 00:20:34 2006
New Revision: 441407

URL: http://svn.apache.org/viewvc?view=rev&rev=441407
Log:
Fix loanbroker bpel example

Modified:
    
incubator/servicemix/branches/servicemix-3.0/samples/loan-broker/loan-broker-lw-su/src/main/resources/servicemix.xml

Modified: 
incubator/servicemix/branches/servicemix-3.0/samples/loan-broker/loan-broker-lw-su/src/main/resources/servicemix.xml
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/branches/servicemix-3.0/samples/loan-broker/loan-broker-lw-su/src/main/resources/servicemix.xml?view=diff&rev=441407&r1=441406&r2=441407
==============================================================================
--- 
incubator/servicemix/branches/servicemix-3.0/samples/loan-broker/loan-broker-lw-su/src/main/resources/servicemix.xml
 (original)
+++ 
incubator/servicemix/branches/servicemix-3.0/samples/loan-broker/loan-broker-lw-su/src/main/resources/servicemix.xml
 Fri Sep  8 00:20:34 2006
@@ -23,13 +23,14 @@
 
   <classpath>
     <location>.</location>
-    <location>lib/servicemix-components-3.0-incubating-SNAPSHOT.jar</location>
+    <location>lib/servicemix-components-3.0-incubating.jar</location>
   </classpath>
 
   <sm:serviceunit id="jbi">
     <sm:activationSpecs>
 
-      <sm:activationSpec destinationService="lb:LoanBrokerService"
+      <sm:activationSpec id="jmsReceiver"
+                         destinationService="lb:LoanBrokerService"
                          destinationOperation="lb:getLoanQuote">
         <sm:component>
           <bean 
class="org.apache.servicemix.components.jms.JmsServiceComponent">
@@ -44,13 +45,14 @@
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec interfaceName="ca:CreditAgency">
+      <sm:activationSpec id="creditAgency"
+                         interfaceName="ca:CreditAgency">
         <sm:component>
           <bean class="loanbroker.CreditAgency" />
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec>
+      <sm:activationSpec id="bank1">
         <sm:component>
           <bean class="loanbroker.Bank">
             <constructor-arg value="1" />
@@ -58,7 +60,7 @@
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec>
+      <sm:activationSpec id="bank2">
         <sm:component>
           <bean class="loanbroker.Bank">
             <constructor-arg value="2" />
@@ -66,7 +68,7 @@
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec>
+      <sm:activationSpec id="bank3">
         <sm:component>
           <bean class="loanbroker.Bank">
             <constructor-arg value="3" />
@@ -74,7 +76,7 @@
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec>
+      <sm:activationSpec id="bank4">
         <sm:component>
           <bean class="loanbroker.Bank">
             <constructor-arg value="4" />
@@ -82,7 +84,7 @@
         </sm:component>
       </sm:activationSpec>
 
-      <sm:activationSpec>
+      <sm:activationSpec id="bank5">
         <sm:component>
           <bean class="loanbroker.Bank">
             <constructor-arg value="5" />


Reply via email to