summaryrefslogtreecommitdiffstats
path: root/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator
diff options
context:
space:
mode:
Diffstat (limited to 'tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator')
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/Makefile.am21
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README24
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README.html256
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/deploy.cmd57
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/Makefile.am23
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/calculator_client.py50
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.bat50
-rwxr-xr-xtags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.sh49
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.solution.composite32
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Calculator.wsdl114
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Makefile.am23
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/calculator_wsclient.py50
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.bat50
-rwxr-xr-xtags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.sh49
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/sample.calculator.wsclient.composite30
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Calculator.wsdl161
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.componentType32
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.py56
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.componentType31
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.py65
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Makefile.am24
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.bat50
-rwxr-xr-xtags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.sh49
-rw-r--r--tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/sample.calculator.composite40
24 files changed, 0 insertions, 1386 deletions
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/Makefile.am b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/Makefile.am
deleted file mode 100644
index 5f234f1d65..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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.
-
-deploydir=$(prefix)/samples/PythonCalculator/deploy
-SUBDIRS = sample.calculator sample.calculator.client sample.calculator.wsclient
-EXTRA_DIST = *.composite README.html
-deploy_DATA = *.composite
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README
deleted file mode 100644
index b9e787c768..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README
+++ /dev/null
@@ -1,24 +0,0 @@
-Tuscany SCA for C++ Samples - Calculator Sample
-===============================================
-
-This is a very simple sample to show how an SCA composite can wire together
-two components to implement a Calculator service and expose that service as
-a Web Service.
-
-There are three sub projects in this workspace:
- - sample.calculator
- This contains the source code and SCDL artifacts for the SCA Calculator.
- composite implementing the sample Calculator.
-
- - sample.calculator.client
- A sample client which does a local call to the Calculator service.
-
- - sample.calculator.wsclient
- A sample Axis2 Web Service client which calls the Calculator Web service.
-
-
-Additionally, there is the sample.calculator.solution.composite file. This
-describes the configuration of the SCA Calculator composite deployed to the
-SCA runtime.
-
-See the README.html file for instructions to build and run this sample
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README.html b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README.html
deleted file mode 100644
index 806c9cfc01..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/README.html
+++ /dev/null
@@ -1,256 +0,0 @@
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<!--
- 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.
--->
-
-<HTML>
-<HEAD>
- <META CONTENT="text/html; charset=iso-8859-1" HTTP-EQUIV="Content-Type">
- <META CONTENT="text/css" HTTP-EQUIV="Content-Style-Type">
- <STYLE MEDIA="all" TYPE="text/css">
-@import url("../../doc/css/maven-base.css");
-@import url("../../doc/css/maven-theme.css");
- </STYLE>
-
- <LINK HREF="../doc/css/maven-theme.css" MEDIA="print" REL="stylesheet"
- TYPE="text/css">
- <TITLE>Tuscany SCA for C++ Samples - PythonCalculator Sample</TITLE>
-</HEAD>
-
-<BODY>
-<DIV ID="bodyColumn">
- <DIV ID="contentBox">
- <DIV CLASS="section">
- <H2>Tuscany SCA for C++ Samples - PythonCalculator Sample</H2>
-
- <P>This is a very simple sample to show how an SCA composite can wire
- together two Python components to implement a Calculator service and expose
- that service as a Web Service.
- </P>
- <P>See the <A HREF="../../doc/PythonExtension.html">Python extension</A>
- documentation for information about building the Tuscany Python extension
- and using Python in SCA composites.
- </P>
- <P>There are three sub projects in this workspace:</P>
- <UL>
- <LI>sample.calculator<BR/>
- This contains the Python scripts and SCDL artifacts for the SCA Calculator
- composite implementing the sample Calculator.
- </LI>
- <LI>sample.calculator.client<BR/>
- A sample client which does a local call to the Calculator service.
- </LI>
- <LI>sample.calculator.wsclient<BR/>
- A sample client which does a local call to a composite that contains a Web Service reference
- that calls the Calculator Web Service.
- </LI>
- </UL>
- <P>Additionally, there is the sample.calculator.solution.composite file. This
- describes the configuration of the SCA Calculator composite deployed to the SCA
- runtime.
- </P>
-
- </DIV>
-
- <DIV CLASS="section">
- <H2>Contents</H2>
- <OL>
- <LI><A HREF="#linuxbld">Building the Python samples on Linux</A></LI>
- <LI><A HREF="#linuxrun">Running the PythonCalculator sample on Linux:</A></LI>
- <UL>
- <LI><A HREF="#linuxbasic">Running the basic client</A></LI>
- <LI><A HREF="#linuxws">Running the Web Service client</A></LI>
- </UL>
- <LI><A HREF="#winbld">Building the PythonCalculator sample on Windows</A></LI>
- <LI><A HREF="#winrun">Running the PythonCalculator sample on Windows:</A></LI>
- <UL>
- <LI><A HREF="#winbasic">Running the basic client</A></LI>
- <LI><A HREF="#winws">Running the Web Service client</A></LI>
- </UL>
- <LI><A HREF="#help">Getting help</A></LI>
- </OL>
- </DIV>
-
-
- <DIV CLASS="section">
- <A NAME="linuxbld"><H2>Building the Python samples on Linux</H2></A>
- <P>If using the binary distribution the samples are built and installed in
- &lt;tuscany_sca_install_dir&gt;/samples - go directly to <A HREF="#linuxrun">Running the samples on Linux</A>.</P>
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL></LI>
- </LI>
- <LI>As the PythonCalculator sample is based on Python scripts, a specific compilation step is not necessary -
- only deployment is required. Deploy the Python samples only with the following command sequence:
- <UL>
- <LI>cd &lt;tuscany_sca_install_dir&gt;/samples</LI>
- <LI>./configure --enable-python --enable-cpp=no --prefix=$TUSCANY_SCACPP</LI>
- <LI>make install</LI>
- </UL>
- NOTE: If you don't provide the --prefix configure option, it will by default install into
- /usr/local/tuscany/sca/samples/PythonCalculator</LI>
- </OL>
- </DIV>
-
- <DIV CLASS="section">
- <A NAME="linuxrun"><H2>Running the PythonCalculator sample on Linux</H2></A>
- <A NAME="linuxbasic"><H3>PythonCalculator with basic client</H3></A>
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;</LI>
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;</LI>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>Run the sample with the following commands:
- <UL>
- <LI>cd &lt;tuscany_sca_install_dir&gt;/samples/PythonCalculator/deploy/sample.calculator.client</LI>
- <LI>./runclient.sh</LI>
- </UL>
- </LI>
- </OL>
- <A NAME="linuxws"><H3>PythonCalculator with Web Service client</H3></A>
- <OL>
- <LI>Ensure you have enabled Axis2C to run Tuscany SCA services. Follow the instructions
- found <A HREF="../../doc/Axis2CWSService.html">here</A>.
- </LI>
- <LI>Start the Axis2C simple http server:
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;</LI>
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;</LI>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>cd &lt;tuscany_sca_install_dir&gt;/samples/PythonCalculator/deploy/sample.calculator</LI>
- <LI>./runwsserver.sh</LI>
- </OL>
- </LI>
- <LI>Run the client:
- <OL>
- <LI>The following environment variable is required:
- <UL>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>cd &lt;tuscany_sca_install_dir&gt;/samples/PythonCalculator/deploy/sample.calculator.wsclient</LI>
- <LI>./runwsclient.sh</LI>
- </OL>
- </LI>
- </OL>
- </DIV>
-
- <DIV CLASS="section">
- <A NAME="winbld"><H2>Building the PythonCalculator sample on Windows</H2></A>
- <P>If using the binary distribution the samples are built and installed in
- &lt;tuscany_sca_install_dir&gt;\samples - go directly to <A HREF="#winrun">Running the samples on Windows</A>.</P>
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL></LI>
- </LI>
- <LI>As this sample is based on Python scripts, a specific compilation step is not necessary -
- only deployment is required. Deploy the sample with the following commands:
- <UL>
- <LI>cd &lt;tuscany_sca_install_dir&gt;\samples\PythonCalculator</LI>
- <LI>deploy.cmd</LI>
- </UL>
- </LI>
- </OL>
- </DIV>
-
- <DIV CLASS="section">
- <A NAME="winrun"><H2>Running the PythonCalculator sample on Windows</H2></A>
- <A NAME="winbasic"><H3>PythonCalculator with basic client</H3></A>
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;</LI>
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;</LI>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>Run the sample with the following commands:
- <UL>
- <LI>cd &lt;tuscany_sca_install_dir&gt;\samples\PythonCalculator\deploy\sample.calculator.client</LI>
- <LI>runclient.bat</LI>
- </UL>
- </LI>
- </OL>
- <A NAME="winws"><H3>PythonCalculator with Web Service client</H3></A>
- <OL>
- <LI>Ensure you have enabled Axis2C to run Tuscany SCA services. Follow the instructions
- found <A HREF="../../doc/Axis2CWSService.html">here</A>.
- </LI>
- <LI>Start the Axis2C simple http server:
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;</LI>
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;</LI>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>cd &lt;tuscany_sca_install_dir&gt;\samples\PythonCalculator\deploy\sample.calculator</LI>
- <LI>runwsserver.bat</LI>
- </OL>
- </LI>
- <LI>Run the client:
- <OL>
- <LI>The following environment variables are required:
- <UL>
- <LI>TUSCANY_SCACPP=&lt;path to installed Tuscany SCA&gt;</LI>
- <LI>TUSCANY_SDOCPP=&lt;path to installed Tuscany SDO&gt;</LI>
- <LI>AXIS2C_HOME=&lt;path to axis2c version 0.94&gt;</LI>
- </UL>
- </LI>
- <LI>cd &lt;tuscany_sca_install_dir&gt;\samples\PythonCalculator\deploy\sample.calculator.wsclient</LI>
- <LI>runwsclient.bat</LI>
- </OL>
- </LI>
- </OL>
- </DIV>
-
- <DIV CLASS="section">
- <A NAME="help"><H2>Getting Help</H2></A>
-
- <P>First place to look is at the Tuscany FAQ at
- <A HREF="http://incubator.apache.org/tuscany/faq.html"
- TARGET="_blank">http://incubator.apache.org/tuscany/faq.html</A> </P>
-
- <P>Any problem with this release can be reported to the Tuscany
- <A HREF="http://incubator.apache.org/tuscany/mail-lists.html"
- TARGET="_blank">mailing lists</A> or create a JIRA issue at&nbsp;<A HREF="http://issues.apache.org/jira/browse/Tuscany"
- TARGET="_blank">http://issues.apache.org/jira/browse/Tuscany</A>.</P>
- </DIV>
- </DIV>
-</DIV>
-</BODY>
-
-</HTML>
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/deploy.cmd b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/deploy.cmd
deleted file mode 100644
index 7db890865a..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/deploy.cmd
+++ /dev/null
@@ -1,57 +0,0 @@
-@echo off
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-
-rem Will copy the correct files from the source tree for packaging and deployment of the
-rem SCA sample.
-setlocal
-set currentPath=%~d0%~p0
-set sourcePath=%currentPath%
-
-set deploydir=%TUSCANY_SCACPP%
-set samplesdir=%deploydir%\samples
-set calcdir=%samplesdir%\PythonCalculator
-
-if . == %1. (
-set destinationPath=%calcdir%\deploy
-) ELSE (
-set destinationPath=%1
-)
-
-if not exist %samplesdir% mkdir %samplesdir%
-if not exist %calcdir% mkdir %calcdir%
-if not exist %destinationPath% mkdir %destinationPath%
-if not exist %destinationPath%\sample.calculator mkdir %destinationPath%\sample.calculator
-copy %sourcePath%\sample.calculator\*.componentType %destinationPath%\sample.calculator
-copy %sourcePath%\sample.calculator\*.composite %destinationPath%\sample.calculator
-copy %sourcePath%\sample.calculator\*.py %destinationPath%\sample.calculator
-copy %sourcePath%\sample.calculator\Calculator.wsdl %destinationPath%\sample.calculator
-copy %sourcePath%\sample.calculator\runwsserver.bat %destinationPath%\sample.calculator
-
-if not exist %destinationPath%\sample.calculator.client mkdir %destinationPath%\sample.calculator.client
-copy %sourcePath%\sample.calculator.client\calculator_client.py %destinationPath%\sample.calculator.client
-copy %sourcePath%\sample.calculator.client\runclient.bat %destinationPath%\sample.calculator.client
-
-if not exist %destinationPath%\sample.calculator.wsclient mkdir %destinationPath%\sample.calculator.wsclient
-copy %sourcePath%\sample.calculator.wsclient\calculator_wsclient.py %destinationPath%\sample.calculator.wsclient
-copy %sourcePath%\sample.calculator.wsclient\sample.calculator.wsclient.composite %destinationPath%\sample.calculator.wsclient
-copy %sourcePath%\sample.calculator.wsclient\Calculator.wsdl %destinationPath%\sample.calculator.wsclient
-copy %sourcePath%\sample.calculator.wsclient\runwsclient.bat %destinationPath%\sample.calculator.wsclient
-
-copy %sourcePath%\*.composite %destinationPath%
-
-endlocal
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/Makefile.am b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/Makefile.am
deleted file mode 100644
index 2f569db441..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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.
-
-deploydir=$(prefix)/samples/PythonCalculator/deploy
-clientdir=$(deploydir)/sample.calculator.client
-
-client_DATA = *.py
-client_SCRIPTS = runclient.sh
-EXTRA_DIST = runclient.sh *.py
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/calculator_client.py b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/calculator_client.py
deleted file mode 100644
index 58d6f45606..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/calculator_client.py
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-#
-#
-#
-#
-# This Python code is a simple sample that provides a Python
-# client for the Calculator sample
-
-
-import sys
-import sca
-
-op = sys.argv[1]
-val1 = sys.argv[2]
-val2 = sys.argv[3]
-
-# Locate the calculator service
-calc = sca.locateservice("CalculatorComponent")
-
-# Invoke the calculator operations
-if op == 'add':
- result = calc.add(val1, val2)
-
-elif op == 'sub':
- result = calc.sub(val1, val2)
-
-elif op == 'mul':
- result = calc.mul(val1, val2)
-
-elif op == 'div':
- result = calc.div(val1, val2)
-
-
-print "calculator_client: ",op,"(",val1,",",val2,") = ",result
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.bat b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.bat
deleted file mode 100644
index d02d5fced8..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.bat
+++ /dev/null
@@ -1,50 +0,0 @@
-@echo off
-
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-
-setlocal
-
-if "%TUSCANY_SCACPP%" == "" (
-echo "TUSCANY_SCACPP not set"
-goto end
-)
-echo using SCA installed at %TUSCANY_SCACPP%
-
-if "%TUSCANY_SDOCPP%" == "" (
-echo "TUSCANY_SDOCPP not set"
-goto end
-)
-echo using SDO installed at %TUSCANY_SDOCPP%
-
-if "%AXIS2C_HOME%" == "" (
-echo "AXIS2C_HOME not set"
-goto end
-)
-echo using Axis2C installed at %AXIS2C_HOME%
-
-set TUSCANY_SCACPP_SYSTEM_ROOT=%~d0%~p0\..\
-set TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorComponent
-
-set PATH=%TUSCANY_SCACPP%\bin;%TUSCANY_SCACPP%\extensions\python\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
-set PYTHONPATH=%TUSCANY_SCACPP%\extensions\python\bin
-
-cd %TUSCANY_SCACPP_SYSTEM_ROOT%\sample.calculator.client
-python calculator_client.py div 5 2
-
-:end
-endlocal
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.sh b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.sh
deleted file mode 100755
index ced35b5f6b..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.client/runclient.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-# 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.
-
-APFULLDIR=`pwd`
-
-if [ x$TUSCANY_SCACPP = x ]; then
-echo "TUSCANY_SCACPP not set"
-exit;
-fi
-echo "Using SCA installed at $TUSCANY_SCACPP"
-
-if [ x$TUSCANY_SDOCPP = x ]; then
-echo "TUSCANY_SDOCPP not set"
-exit;
-fi
-echo "Using SDO installed at $TUSCANY_SDOCPP"
-
-if [ x$AXIS2C_HOME = x ]; then
-echo "AXIS2C_HOME not set"
-exit;
-fi
-echo "Using Axis2C installed at $AXIS2C_HOME"
-
-TEST_SYSTEM=$APFULLDIR/../
-
-export LD_LIBRARY_PATH=$TUSCANY_SCACPP/lib:$TUSCANY_SCACPP/extensions/python/lib:$TUSCANY_SDOCPP/lib:$AXIS2C_HOME/lib:$LD_LIBRARY_PATH
-export PYTHONPATH=$TUSCANY_SCACPP/extensions/python/lib:$PYTHONPATH
-
-export TUSCANY_SCACPP_SYSTEM_ROOT=$TEST_SYSTEM
-export TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorComponent
-
-cd $TUSCANY_SCACPP_SYSTEM_ROOT/sample.calculator.client
-python calculator_client.py div 5 2
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.solution.composite b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.solution.composite
deleted file mode 100644
index 0a8ae343db..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.solution.composite
+++ /dev/null
@@ -1,32 +0,0 @@
-<?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.
--->
-
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- name="sample.calculator.solution">
-
- <component name="sample.calculator.CalculatorComponent">
- <implementation.composite name="sample.calculator" />
- </component>
-
- <component name="sample.calculator.CalculatorWSClientComponent">
- <implementation.composite name="sample.calculator.wsclient" />
- </component>
-
-</composite>
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Calculator.wsdl b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Calculator.wsdl
deleted file mode 100644
index f74c3d5c33..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Calculator.wsdl
+++ /dev/null
@@ -1,114 +0,0 @@
-<?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.
--->
-
-<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:tns="http://sample/calculator"
- targetNamespace="http://sample/calculator">
- <types>
- <xs:schema targetNamespace="http://sample/calculator"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:tns="http://sample/calculator" elementFormDefault="qualified">
-
- <xs:element name="add">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="sub">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="mul">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="div">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="result">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="data" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- </xs:schema>
- </types>
-
- <message name="addRequestMsg">
- <part name="body" element="tns:add" />
- </message>
- <message name="subRequestMsg">
- <part name="body" element="tns:sub" />
- </message>
- <message name="mulRequestMsg">
- <part name="body" element="tns:mul" />
- </message>
- <message name="divRequestMsg">
- <part name="body" element="tns:div" />
- </message>
-
- <message name="calculatorResponseMsg">
- <part name="body" element="tns:result" />
- </message>
-
- <portType name="Calculator">
- <operation name="add">
- <input message="tns:addRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="sub">
- <input message="tns:subRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="mul">
- <input message="tns:mulRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="div">
- <input message="tns:divRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- </portType>
-
-</definitions>
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Makefile.am b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Makefile.am
deleted file mode 100644
index 931612432a..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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.
-
-deploydir=$(prefix)/samples/PythonCalculator/deploy
-wsclientdir=$(deploydir)/sample.calculator.wsclient
-
-wsclient_DATA = *.py *.wsdl *.composite
-wsclient_SCRIPTS = runwsclient.sh
-EXTRA_DIST = runwsclient.sh *.py *.wsdl *.composite
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/calculator_wsclient.py b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/calculator_wsclient.py
deleted file mode 100644
index 1ec1f66d83..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/calculator_wsclient.py
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.
-#
-#
-#
-#
-# This Python code is a simple sample that provides a Python
-# client for the Calculator sample
-
-
-import sys
-import sca
-
-op = sys.argv[1]
-val1 = sys.argv[2]
-val2 = sys.argv[3]
-
-# Locate the calculator service
-calc = sca.locateservice("CalculatorService")
-
-# Invoke the calculator operations
-if op == 'add':
- result = calc.add(val1, val2)
-
-elif op == 'sub':
- result = calc.sub(val1, val2)
-
-elif op == 'mul':
- result = calc.mul(val1, val2)
-
-elif op == 'div':
- result = calc.div(val1, val2)
-
-
-print "calculator_wsclient: ",op,"(",val1,",",val2,") = ",result
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.bat b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.bat
deleted file mode 100644
index dbcdf06313..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.bat
+++ /dev/null
@@ -1,50 +0,0 @@
-@echo off
-
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-
-setlocal
-
-if "%TUSCANY_SCACPP%" == "" (
-echo "TUSCANY_SCACPP not set"
-goto end
-)
-echo using SCA installed at %TUSCANY_SCACPP%
-
-if "%TUSCANY_SDOCPP%" == "" (
-echo "TUSCANY_SDOCPP not set"
-goto end
-)
-echo using SDO installed at %TUSCANY_SDOCPP%
-
-if "%AXIS2C_HOME%" == "" (
-echo "AXIS2C_HOME not set"
-goto end
-)
-echo using Axis2C installed at %AXIS2C_HOME%
-
-set TUSCANY_SCACPP_SYSTEM_ROOT=%~d0%~p0\..\
-set TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorWSClientComponent
-
-set PATH=%TUSCANY_SCACPP%\bin;%TUSCANY_SCACPP%\extensions\python\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
-set PYTHONPATH=%TUSCANY_SCACPP%\extensions\python\bin
-
-cd %TUSCANY_SCACPP_SYSTEM_ROOT%\sample.calculator.wsclient
-python calculator_wsclient.py div 5 2
-
-:end
-endlocal
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.sh b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.sh
deleted file mode 100755
index a02f607d08..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/runwsclient.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-# 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.
-
-APFULLDIR=`pwd`
-
-if [ x$TUSCANY_SCACPP = x ]; then
-echo "TUSCANY_SCACPP not set"
-exit;
-fi
-echo "Using SCA installed at $TUSCANY_SCACPP"
-
-if [ x$TUSCANY_SDOCPP = x ]; then
-echo "TUSCANY_SDOCPP not set"
-exit;
-fi
-echo "Using SDO installed at $TUSCANY_SDOCPP"
-
-if [ x$AXIS2C_HOME = x ]; then
-echo "AXIS2C_HOME not set"
-exit;
-fi
-echo "Using Axis2C installed at $AXIS2C_HOME"
-
-TEST_SYSTEM=$APFULLDIR/../
-
-export LD_LIBRARY_PATH=$TUSCANY_SCACPP/lib:$TUSCANY_SCACPP/extensions/python/lib:$TUSCANY_SDOCPP/lib:$AXIS2C_HOME/lib:$LD_LIBRARY_PATH
-export PYTHONPATH=$TUSCANY_SCACPP/extensions/python/lib:$PYTHONPATH
-
-export TUSCANY_SCACPP_SYSTEM_ROOT=$TEST_SYSTEM
-export TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorWSClientComponent
-
-cd $TUSCANY_SCACPP_SYSTEM_ROOT/sample.calculator.wsclient
-python calculator_wsclient.py div 5 2
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/sample.calculator.wsclient.composite b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/sample.calculator.wsclient.composite
deleted file mode 100644
index 6ee1169645..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator.wsclient/sample.calculator.wsclient.composite
+++ /dev/null
@@ -1,30 +0,0 @@
-<?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.
--->
-
-
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- name="sample.calculator.wsclient">
-
- <reference name="CalculatorService">
- <interface.wsdl interface="http://sample/calculator#wsdl.interface(Calculator)"/>
- <binding.ws uri="http://localhost:9090/axis2/services/CalculatorService"/>
- </reference>
-
-</composite> \ No newline at end of file
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Calculator.wsdl b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Calculator.wsdl
deleted file mode 100644
index 37529c06c5..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Calculator.wsdl
+++ /dev/null
@@ -1,161 +0,0 @@
-<?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.
--->
-
-<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:tns="http://sample/calculator"
- targetNamespace="http://sample/calculator">
- <types>
- <xs:schema targetNamespace="http://sample/calculator"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:tns="http://sample/calculator" elementFormDefault="qualified">
-
- <xs:element name="add">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="sub">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="mul">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="div">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="param1" type="xs:float"/>
- <xs:element name="param2" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- <xs:element name="result">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="data" type="xs:float"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
-
- </xs:schema>
- </types>
-
- <message name="addRequestMsg">
- <part name="body" element="tns:add" />
- </message>
- <message name="subRequestMsg">
- <part name="body" element="tns:sub" />
- </message>
- <message name="mulRequestMsg">
- <part name="body" element="tns:mul" />
- </message>
- <message name="divRequestMsg">
- <part name="body" element="tns:div" />
- </message>
-
- <message name="calculatorResponseMsg">
- <part name="body" element="tns:result" />
- </message>
-
- <portType name="Calculator">
- <operation name="add">
- <input message="tns:addRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="sub">
- <input message="tns:subRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="mul">
- <input message="tns:mulRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- <operation name="div">
- <input message="tns:divRequestMsg" />
- <output message="tns:calculatorResponseMsg" />
- </operation>
- </portType>
-
- <binding name="CalculatorBinding"
- type="tns:Calculator">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="add">
- <soap:operation soapAction="CalculatorService#add" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- <operation name="sub">
- <soap:operation soapAction="CalculatorService#sub" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- <operation name="mul">
- <soap:operation soapAction="CalculatorService#mul" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- <operation name="div">
- <soap:operation soapAction="CalculatorService#div" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- </binding>
-
- <service name="CalculatorService">
- <port name="CalculatorPort"
- binding="tns:CalculatorBinding">
- <soap:address location="http://localhost:9090/axis2/services/CalculatorService" />
- </port>
- </service>
-</definitions>
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.componentType b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.componentType
deleted file mode 100644
index b54b4e22b1..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.componentType
+++ /dev/null
@@ -1,32 +0,0 @@
-<?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.
--->
-
-
-<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0">
-
- <service name="CalculatorService">
- <interface.python/>
- </service>
-
- <reference name="divideService">
- <interface.python/>
- </reference>
-
-</componentType> \ No newline at end of file
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.py b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.py
deleted file mode 100644
index 86dbef9e4d..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/CalculatorImpl.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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.
-#
-#
-#
-#
-# This Python code is a simple sample that provides a Python implementation of
-# the Calculator sample
-#
-
-
-# The module-level add function
-def add(val1, val2):
- result = float(val1) + float(val2)
- print "Python - CalculatorImpl.add " + str(val1) + " + " + str(val2) + " = " + str(result)
- return result
-
-# The module-level sub function
-def sub(val1, val2):
- result = float(val1) - float(val2)
- print "Python - CalculatorImpl.sub " + str(val1) + " - " + str(val2) + " = " + str(result)
- return result
-
-# The module-level mul function
-def mul(val1, val2):
- result = float(val1) * float(val2)
- print "Python - CalculatorImpl.mul " + str(val1) + " * " + str(val2) + " = " + str(result)
- return result
-
-# The module-level div function
-def div(val1, val2):
-
-
- print "Python - CalculatorImpl.div calling divideService to determine " + str(val1) + " / " + str(val2)
-
- # Use the divideService reference
- result = divideService.divide(val1, val2)
-
- print "Python - CalculatorImpl.div divideService returned " + str(result)
-
- return result
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.componentType b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.componentType
deleted file mode 100644
index fa2938279a..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.componentType
+++ /dev/null
@@ -1,31 +0,0 @@
-<?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.
--->
-
-
-<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
- <service name="DivideService">
- <interface.python/>
- </service>
-
- <property name="doRounding" type="xsd:boolean"/>
-
-</componentType>
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.py b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.py
deleted file mode 100644
index 3921731de6..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/DivideImpl.py
+++ /dev/null
@@ -1,65 +0,0 @@
-# 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.
-#
-#
-#
-#
-# This Python code is a simple sample that provides a Python implementation of
-# the Divide Service used in the Calculator sample
-#
-# Either use the divide function in the DivideClass class (using classes allows
-# composite scoping to be used)
-# e.g. in CalculatorComposite.composite use the line:
-# <implementation.python module="DivideImpl" class="DivideClass"/>
-#
-# Or just use the module-level divide function
-# e.g. in CalculatorComposite.composite use the line:
-# <implementation.python module="DivideImpl" />
-#
-
-
-class DivideClass:
- "A class to handle dividing"
-
- def __init__(self):
- print "Python - DivideImpl.DivideClass constructor"
-
- # The class-level divide function
- def divide(self, val1, val2):
- result = float(val1) / float(val2)
-
- print "Python - DivideImpl.DivideClass.divide " + str( val1 ) + " / " + str(val2) + " = " + str(result)
-
- # Use the doRounding property
- if doRounding:
- result = round(result)
- print "Python - DivideImpl.DivideClass.divide is rounding the result to " + str(result)
-
- return result
-
-# The module-level divide function
-def divide(val1, val2):
- result = float(val1) / float(val2)
- print "Python - DivideImpl.divide " + str(val1) + " / " + str(val2) + " = " + str(result)
-
- # Use the doRounding property
- if doRounding:
- result = round(result)
- print "Python - DivideImpl.divide is rounding the result to " + str(result)
-
- return result
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Makefile.am b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Makefile.am
deleted file mode 100644
index 7c0cbd7b88..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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.
-
-deploydir=$(prefix)/samples/PythonCalculator/deploy
-compositedir=$(deploydir)/sample.calculator
-
-composite_DATA = *.composite *.componentType *.wsdl *.py
-composite_SCRIPTS = runwsserver.sh
-EXTRA_DIST = *.composite *.componentType *.wsdl *.py runwsserver.sh
-
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.bat b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.bat
deleted file mode 100644
index 2e5df325b2..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.bat
+++ /dev/null
@@ -1,50 +0,0 @@
-@echo off
-
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-
-setlocal
-
-if "%TUSCANY_SCACPP%" == "" (
-echo "TUSCANY_SCACPP not set"
-goto end
-)
-echo using SCA installed at %TUSCANY_SCACPP%
-
-if "%TUSCANY_SDOCPP%" == "" (
-echo "TUSCANY_SDOCPP not set"
-goto end
-)
-echo using SDO installed at %TUSCANY_SDOCPP%
-
-if "%AXIS2C_HOME%" == "" (
-echo "AXIS2C_HOME not set"
-goto end
-)
-echo using Axis2C installed at %AXIS2C_HOME%
-
-set TUSCANY_SCACPP_SYSTEM_ROOT=%~d0%~p0\..\
-set TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorComponent
-
-set PATH=%TUSCANY_SCACPP%\bin;%TUSCANY_SCACPP%\extensions\python\bin;%TUSCANY_SDOCPP%\bin;%AXIS2C_HOME%\lib;%PATH%
-set PYTHONPATH=%TUSCANY_SCACPP%\extensions\python\bin
-
-cd %AXIS2C_HOME%\bin
-.\axis2_http_server.exe
-
-:end
-endlocal
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.sh b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.sh
deleted file mode 100755
index 570a439b4f..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/runwsserver.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-# 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.
-
-APFULLDIR=`pwd`
-
-if [ x$TUSCANY_SCACPP = x ]; then
-echo "TUSCANY_SCACPP not set"
-exit;
-fi
-echo "Using SCA installed at $TUSCANY_SCACPP"
-
-if [ x$TUSCANY_SDOCPP = x ]; then
-echo "TUSCANY_SDOCPP not set"
-exit;
-fi
-echo "Using SDO installed at $TUSCANY_SDOCPP"
-
-if [ x$AXIS2C_HOME = x ]; then
-echo "AXIS2C_HOME not set"
-exit;
-fi
-echo "Using Axis2C installed at $AXIS2C_HOME"
-
-TEST_SYSTEM=$APFULLDIR/../
-
-export LD_LIBRARY_PATH=$TUSCANY_SCACPP/lib:$TUSCANY_SCACPP/extensions/python/lib:$TUSCANY_SDOCPP/lib:$AXIS2C_HOME/lib:$LD_LIBRARY_PATH
-export PYTHONPATH=$TUSCANY_SCACPP/extensions/python/lib:$PYTHONPATH
-
-export TUSCANY_SCACPP_SYSTEM_ROOT=$TEST_SYSTEM
-export TUSCANY_SCACPP_DEFAULT_COMPONENT=sample.calculator.CalculatorComponent
-
-cd $AXIS2C_HOME/bin
-./axis2_http_server
diff --git a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/sample.calculator.composite b/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/sample.calculator.composite
deleted file mode 100644
index caac112edf..0000000000
--- a/tags/cpp-1.0-incubating-M2-RC2/sca/samples/PythonCalculator/sample.calculator/sample.calculator.composite
+++ /dev/null
@@ -1,40 +0,0 @@
-<?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.
--->
-
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- name="sample.calculator">
-
- <service name="CalculatorService">
- <interface.wsdl interface="http://sample/calculator#wsdl.interface(Calculator)"/>
- <binding.ws/>
- <reference>CalculatorComponent</reference>
- </service>
-
- <component name="CalculatorComponent">
- <implementation.python module="CalculatorImpl" scope="composite"/>
- <reference name="divideService">DivideComponent</reference>
- </component>
-
- <component name="DivideComponent">
- <implementation.python module="DivideImpl" scope="composite"/>
- <property name="doRounding">true</property>
- </component>
-
-</composite>