summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/samples/store-python/store.composite
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
commit874620b24eaf0862fb28194099e951e57363ca29 (patch)
tree76413f39d2ef9e79456af15e99648754a17fff4e /sca-cpp/trunk/samples/store-python/store.composite
parent49f4223605b4946a2bf6831262dd442375a4a929 (diff)
Refactor some of the extensions and remove unnecessary namespace prefixes.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1126298 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/samples/store-python/store.composite')
-rw-r--r--sca-cpp/trunk/samples/store-python/store.composite21
1 files changed, 10 insertions, 11 deletions
diff --git a/sca-cpp/trunk/samples/store-python/store.composite b/sca-cpp/trunk/samples/store-python/store.composite
index 912898123b..d33667e897 100644
--- a/sca-cpp/trunk/samples/store-python/store.composite
+++ b/sca-cpp/trunk/samples/store-python/store.composite
@@ -18,14 +18,13 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
targetNamespace="http://store"
name="store">
<component name="Store">
- <t:implementation.python script="store.py"/>
+ <implementation.python script="store.py"/>
<service name="Widget">
- <t:binding.http uri="store"/>
+ <binding.http uri="store"/>
</service>
<reference name="catalog" target="Catalog"/>
<reference name="shoppingCart" target="ShoppingCart/Cart"/>
@@ -33,36 +32,36 @@
</component>
<component name="Catalog">
- <t:implementation.python script="fruits-catalog.py"/>
+ <implementation.python script="fruits-catalog.py"/>
<property name="currencyCode">USD</property>
<service name="Catalog">
- <t:binding.jsonrpc uri="catalog"/>
+ <binding.jsonrpc uri="catalog"/>
</service>
<reference name="currencyConverter" target="CurrencyConverter"/>
</component>
<component name="ShoppingCart">
- <t:implementation.python script="shopping-cart.py"/>
+ <implementation.python script="shopping-cart.py"/>
<service name="ShoppingCart">
- <t:binding.atom uri="shoppingCart"/>
+ <binding.atom uri="shoppingCart"/>
</service>
<service name="Total">
- <t:binding.jsonrpc uri="total"/>
+ <binding.jsonrpc uri="total"/>
</service>
<reference name="cache" target="Cache"/>
</component>
<component name="CurrencyConverter">
- <t:implementation.python script="currency-converter.py"/>
+ <implementation.python script="currency-converter.py"/>
<service name="CurrencyConverter">
- <t:binding.jsonrpc uri="currencyConverter"/>
+ <binding.jsonrpc uri="currencyConverter"/>
</service>
</component>
<component name="Cache">
<implementation.cpp path="../../components/cache" library="libmemcache"/>
<service name="Cache">
- <t:binding.atom uri="cache"/>
+ <binding.atom uri="cache"/>
</service>
<property name="servers">localhost:11211</property>
</component>