You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/09/07 08:36:29 UTC

svn commit: r440992 - in /incubator/tuscany/cpp/sca/samples: BigBank/Accounts/ Calculator/sample.calculator.wsclient/ Calculator/sample.calculator/ PythonCalculator/sample.calculator.wsclient/ PythonCalculator/sample.calculator/ RubyCalculator/sample.c...

Author: jsdelfino
Date: Wed Sep  6 23:36:29 2006
New Revision: 440992

URL: http://svn.apache.org/viewvc?view=rev&rev=440992
Log:
Moved services.xml out of the sample composite directories like Simon did in BigBank

Added:
    incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml   (with props)
    incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml   (with props)
    incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml   (with props)
Removed:
    incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/services.xml
    incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/services.xml
    incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/services.xml
Modified:
    incubator/tuscany/cpp/sca/samples/BigBank/Accounts/Makefile.am
    incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/Makefile.am
    incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/Makefile.am
    incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am

Modified: incubator/tuscany/cpp/sca/samples/BigBank/Accounts/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/BigBank/Accounts/Makefile.am?view=diff&rev=440992&r1=440991&r2=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/BigBank/Accounts/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/BigBank/Accounts/Makefile.am Wed Sep  6 23:36:29 2006
@@ -17,8 +17,8 @@
 	java -jar $(TUSCANY_SCACPP)/bin/scagen.jar -dir . -output .
 
 composite_LTLIBRARIES = libAccounts.la
-composite_DATA = *.composite *.componentType *.wsdl *.xsd services.xml
-EXTRA_DIST = *.composite *.componentType *.wsdl *.xsd services.xml
+composite_DATA = *.composite *.componentType *.wsdl *.xsd
+EXTRA_DIST = *.composite *.componentType *.wsdl *.xsd
 
 libAccounts_la_SOURCES = \
 AccountDataServiceImpl.cpp \

Added: incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml?view=auto&rev=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml (added)
+++ incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml Wed Sep  6 23:36:29 2006
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation or its licensors, as applicable.
+
+  Licensed 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.
+ -->
+<service name="CalculatorService">
+    <parameter name="ServiceClass" locked="xsd:false">tuscany_sca_ws_service</parameter>
+    <parameter name="TuscanySystemRoot" locked="xsd:false">PATH-TO-THE-SYSTEM-ROOT</parameter>
+    <parameter name="TuscanyService" locked="xsd:false">sample.calculator.CalculatorComponent/CalculatorService</parameter>
+
+   <description>
+        This is a sample SCA service implemented with two components wired together
+   </description>
+
+    <operation name="add">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="sub">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="mul">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="div">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+</service>

Propchange: incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/Makefile.am?view=diff&rev=440992&r1=440991&r2=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/Calculator/sample.calculator/Makefile.am Wed Sep  6 23:36:29 2006
@@ -13,8 +13,8 @@
 	java -jar $(TUSCANY_SCACPP)/bin/scagen.jar -dir . -output .
 
 composite_LTLIBRARIES = libCalculator.la
-composite_DATA = *.composite *.componentType *.wsdl services.xml
-EXTRA_DIST = *.composite *.componentType *.wsdl services.xml
+composite_DATA = *.composite *.componentType *.wsdl
+EXTRA_DIST = *.composite *.componentType *.wsdl
 
 libCalculator_la_SOURCES = \
 CalculatorImpl.cpp \

Added: incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml?view=auto&rev=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml (added)
+++ incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml Wed Sep  6 23:36:29 2006
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation or its licensors, as applicable.
+
+  Licensed 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.
+ -->
+<service name="CalculatorService">
+    <parameter name="ServiceClass" locked="xsd:false">tuscany_sca_ws_service</parameter>
+    <parameter name="TuscanySystemRoot" locked="xsd:false">PATH-TO-THE-SYSTEM-ROOT</parameter>
+    <parameter name="TuscanyService" locked="xsd:false">sample.calculator.CalculatorComponent/CalculatorService</parameter>
+
+   <description>
+        This is a sample SCA service implemented with two components wired together
+   </description>
+
+    <operation name="add">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="sub">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="mul">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="div">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+</service>

Propchange: incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/Makefile.am?view=diff&rev=440992&r1=440991&r2=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/PythonCalculator/sample.calculator/Makefile.am Wed Sep  6 23:36:29 2006
@@ -11,8 +11,8 @@
 	java -jar $(TUSCANY_SCACPP)/bin/scagen.jar -dir . -output .
 
 composite_LTLIBRARIES = libCalculator.la
-composite_DATA = *.composite *.componentType *.wsdl *.py services.xml
-EXTRA_DIST = *.composite *.componentType *.wsdl *.py services.xml
+composite_DATA = *.composite *.componentType *.wsdl *.py
+EXTRA_DIST = *.composite *.componentType *.wsdl *.py
 
 libCalculator_la_SOURCES = \
 CalculatorImpl.cpp \

Added: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml?view=auto&rev=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml (added)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml Wed Sep  6 23:36:29 2006
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation or its licensors, as applicable.
+
+  Licensed 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.
+ -->
+<service name="CalculatorService">
+    <parameter name="ServiceClass" locked="xsd:false">tuscany_sca_ws_service</parameter>
+    <parameter name="TuscanySystemRoot" locked="xsd:false">PATH-TO-THE-SYSTEM-ROOT</parameter>
+    <parameter name="TuscanyService" locked="xsd:false">sample.calculator.CalculatorComponent/CalculatorService</parameter>
+
+   <description>
+        This is a sample SCA service implemented with two components wired together
+   </description>
+
+    <operation name="add">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="sub">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="mul">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+    <operation name="div">
+            <!--messageReceiver class="axis2_receivers" /-->
+    </operation>
+
+</service>

Propchange: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator.wsclient/services.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am?view=diff&rev=440992&r1=440991&r2=440992
==============================================================================
--- incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/samples/RubyCalculator/sample.calculator/Makefile.am Wed Sep  6 23:36:29 2006
@@ -11,8 +11,8 @@
 	java -jar $(TUSCANY_SCACPP)/bin/scagen.jar -dir . -output .
 
 composite_LTLIBRARIES = libCalculator.la
-composite_DATA = *.composite *.componentType *.wsdl *.rb services.xml
-EXTRA_DIST = *.composite *.componentType *.wsdl *.rb services.xml
+composite_DATA = *.composite *.componentType *.wsdl *.rb
+EXTRA_DIST = *.composite *.componentType *.wsdl *.rb
 
 libCalculator_la_SOURCES = \
 CalculatorImpl.cpp \



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org