summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/store/src/main/resources/store.composite
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-17 06:21:41 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-17 06:21:41 +0000
commitc40ade3c51fffbe23ca390599c056206e0f5fd5b (patch)
tree77b6c512c7fb207fe5d9b81b9d3ddef5ab57da15 /java/sca/samples/store/src/main/resources/store.composite
parentb33133d72fd46a719b9449d2582c1cd6f95f35c7 (diff)
Updating store sample application to the latest OASIS namespace/packages and updating the launcher to use 2.x Node
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@881166 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/samples/store/src/main/resources/store.composite20
1 files changed, 10 insertions, 10 deletions
diff --git a/java/sca/samples/store/src/main/resources/store.composite b/java/sca/samples/store/src/main/resources/store.composite
index 571678839d..89ac474db1 100644
--- a/java/sca/samples/store/src/main/resources/store.composite
+++ b/java/sca/samples/store/src/main/resources/store.composite
@@ -17,24 +17,24 @@
* specific language governing permissions and limitations
* under the License.
-->
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0"
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+ xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
targetNamespace="http://store"
name="store">
<component name="Store">
- <t:implementation.widget location="uiservices/store.html"/>
+ <tuscany:implementation.widget location="uiservices/store.html"/>
<service name="Widget">
- <t:binding.http uri="/store"/>
+ <tuscany:binding.http uri="/store"/>
</service>
<reference name="catalog" target="Catalog">
- <t:binding.jsonrpc/>
+ <tuscany:binding.jsonrpc/>
</reference>
<reference name="shoppingCart" target="ShoppingCart/Cart">
- <t:binding.atom/>
+ <tuscany:binding.atom/>
</reference>
<reference name="shoppingTotal" target="ShoppingCart/Total">
- <t:binding.jsonrpc/>
+ <tuscany:binding.jsonrpc/>
</reference>
</component>
@@ -42,7 +42,7 @@
<implementation.java class="services.FruitsCatalogImpl"/>
<property name="currencyCode">USD</property>
<service name="Catalog">
- <t:binding.jsonrpc/>
+ <tuscany:binding.jsonrpc/>
</service>
<reference name="currencyConverter" target="CurrencyConverter"/>
</component>
@@ -50,10 +50,10 @@
<component name="ShoppingCart">
<implementation.java class="services.ShoppingCartImpl"/>
<service name="Cart">
- <t:binding.atom uri="/ShoppingCart/Cart"/>
+ <tuscany:binding.atom uri="/ShoppingCart/Cart"/>
</service>
<service name="Total">
- <t:binding.jsonrpc/>
+ <tuscany:binding.jsonrpc/>
</service>
</component>