diff options
Diffstat (limited to 'sca-cpp/trunk/samples/store-scheme/store.composite')
-rw-r--r-- | sca-cpp/trunk/samples/store-scheme/store.composite | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/sca-cpp/trunk/samples/store-scheme/store.composite b/sca-cpp/trunk/samples/store-scheme/store.composite index fd58ae6c9d..043c8214c0 100644 --- a/sca-cpp/trunk/samples/store-scheme/store.composite +++ b/sca-cpp/trunk/samples/store-scheme/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.scheme script="store.scm"/> + <implementation.scheme script="store.scm"/> <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.scheme script="fruits-catalog.scm"/> + <implementation.scheme script="fruits-catalog.scm"/> <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.scheme script="shopping-cart.scm"/> + <implementation.scheme script="shopping-cart.scm"/> <service name="Cart"> - <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.scheme script="currency-converter.scm"/> + <implementation.scheme script="currency-converter.scm"/> <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> |