summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-10-06 13:00:37 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-10-06 13:00:37 +0000
commited17c68eaa44b32483155d9ecbd0d1a0e934d62b (patch)
tree15069eb9b2aab2e5a9037f1606205750266a26fb
parent42a831942ae986f83d444bce5c6f49fa6f01b2bc (diff)
Fix problem with dublicate components. (still doesn't work yet)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@822256 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/itest/jms/callbacks/src/main/resources/jndi.properties1
-rw-r--r--java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite8
2 files changed, 5 insertions, 4 deletions
diff --git a/java/sca/itest/jms/callbacks/src/main/resources/jndi.properties b/java/sca/itest/jms/callbacks/src/main/resources/jndi.properties
index 608fe747f5..dec266b133 100644
--- a/java/sca/itest/jms/callbacks/src/main/resources/jndi.properties
+++ b/java/sca/itest/jms/callbacks/src/main/resources/jndi.properties
@@ -30,6 +30,7 @@ connectionFactoryNames = ConnectionFactory
# register some queues in JNDI using the form
# queue.[jndiName] = [physicalName]
queue.ServiceQueue = ServiceQueue
+queue.ServiceQueue = TQServiceQueue
queue.CallbackQueue = CallbackQueue
# register some topics in JNDI using the form
diff --git a/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite b/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite
index 78e9f37818..5ef7c981f0 100644
--- a/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite
+++ b/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite
@@ -27,20 +27,20 @@ The client component does not define the callback destination so a temporary que
-->
- <component name="ClientComponent">
+ <component name="TQClientComponent">
<implementation.java class="org.apache.tuscany.sca.binding.jms.JMSClientImpl" />
<reference name="myService">
- <binding.jms uri="jms:ServiceQueue"/>
+ <binding.jms uri="jms:TQServiceQueue"/>
<callback>
<binding.jms />
</callback>
</reference>
</component>
- <component name="ServiceComponent">
+ <component name="TQServiceComponent">
<implementation.java class="org.apache.tuscany.sca.binding.jms.JMSServiceImpl" />
<service name="JMSService">
- <binding.jms uri="jms:ServiceQueue"/>
+ <binding.jms uri="jms:TQServiceQueue"/>
<callback>
<binding.jms />
</callback>