You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/10/02 15:10:36 UTC

svn commit: r821007 - in /tuscany/java/sca/itest/jms/topics/src/main/resources: META-INF/ META-INF/sca-contribution.xml topics/TopicsClient.composite topics/TopicsService.composite

Author: antelder
Date: Fri Oct  2 13:10:36 2009
New Revision: 821007

URL: http://svn.apache.org/viewvc?rev=821007&view=rev
Log:
Bring up the JMS topics itest. (coincidentally, this had the same issue Luciano just emailed about bindings on promoted services and references being ignored)

Added:
    tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/sca-contribution.xml
Modified:
    tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsClient.composite
    tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsService.composite

Added: tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/sca-contribution.xml?rev=821007&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/topics/src/main/resources/META-INF/sca-contribution.xml Fri Oct  2 13:10:36 2009
@@ -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>
\ No newline at end of file

Modified: tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsClient.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsClient.composite?rev=821007&r1=821006&r2=821007&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsClient.composite (original)
+++ tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsClient.composite Fri Oct  2 13:10:36 2009
@@ -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>

Modified: tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsService.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsService.composite?rev=821007&r1=821006&r2=821007&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsService.composite (original)
+++ tuscany/java/sca/itest/jms/topics/src/main/resources/topics/TopicsService.composite Fri Oct  2 13:10:36 2009
@@ -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>