Bring up the JMS topics itest. (coincidentally, this had the same issue Luciano just emailed about bindings on promoted services and references being ignored)

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@821007 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
antelder 2009-10-02 13:10:36 +00:00
parent acd7c43a39
commit 92ee976b4c
3 changed files with 32 additions and 9 deletions

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
-->
<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
xmlns:itest="http://itest">
<deployable composite="itest:TopicsClientComposite"/>
<deployable composite="itest:OneWayServiceComposite"/>
</contribution>

View file

@ -18,18 +18,16 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
targetNamespace="http://itest"
name="TopicsClientComposite">
<component name="OneWayClient">
<implementation.java class="org.apache.tuscany.sca.binding.jms.OneWayClientImpl"/>
<reference name="serviceA" />
<reference name="serviceA">
<binding.jms>
<destination jndiName="MyTopic" type="topic" create="never"/>
</binding.jms>
</reference>
</component>
<reference name="serviceA" promote="OneWayClient/serviceA">
<interface.java interface="org.apache.tuscany.sca.binding.jms.OneWayService" />
<binding.jms>
<destination name="MyTopic" type="topic" create="never"/>
</binding.jms>
</reference>
</composite>

View file

@ -18,13 +18,14 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
targetNamespace="http://itest"
name="OneWayServiceComposite">
<component name="OneWayService">
<implementation.java class="org.apache.tuscany.sca.binding.jms.OneWayServiceImpl"/>
<service name="OneWayService">
<binding.jms>
<destination name="MyTopic" type="topic" create="never"/>
<destination jndiName="MyTopic" type="topic" create="never"/>
</binding.jms>
</service>
</component>