diff options
Diffstat (limited to 'java/sca/itest/jms')
-rw-r--r-- | java/sca/itest/jms/callbacks/src/main/resources/jndi.properties | 1 | ||||
-rw-r--r-- | java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite | 8 |
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>
|