summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/store-webapp/src/main/resources/store.composite
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-17 06:22:44 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-17 06:22:44 +0000
commit8e4a90d2f486e4e62b45e3085448f82e056c0300 (patch)
tree24210eb9f4a658c021266efb684410db462718d3 /java/sca/samples/store-webapp/src/main/resources/store.composite
parentc40ade3c51fffbe23ca390599c056206e0f5fd5b (diff)
Updating store sample webapp to the latest OASIS namespace/packages
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@881167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/samples/store-webapp/src/main/resources/store.composite18
1 files changed, 9 insertions, 9 deletions
diff --git a/java/sca/samples/store-webapp/src/main/resources/store.composite b/java/sca/samples/store-webapp/src/main/resources/store.composite
index 9c25783c0f..2fa6f93b39 100644
--- a/java/sca/samples/store-webapp/src/main/resources/store.composite
+++ b/java/sca/samples/store-webapp/src/main/resources/store.composite
@@ -17,21 +17,21 @@
* 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="store.html"/>
+ <tuscany:implementation.widget location="store.html"/>
<reference name="catalog" target="Catalog">
- <t:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Catalog"/>
+ <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Catalog"/>
</reference>
<reference name="shoppingCart" target="ShoppingCart/Cart">
- <t:binding.atom uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Cart"/>
+ <tuscany:binding.atom uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Cart"/>
</reference>
<reference name="shoppingTotal" target="ShoppingCart/Total">
- <t:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Total"/>
+ <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Total"/>
</reference>
</component>
@@ -39,7 +39,7 @@
<implementation.java class="services.FruitsCatalogImpl"/>
<property name="currencyCode">USD</property>
<service name="Catalog">
- <t:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Catalog"/>
+ <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Catalog"/>
</service>
<reference name="currencyConverter" target="CurrencyConverter"/>
</component>
@@ -47,10 +47,10 @@
<component name="ShoppingCart">
<implementation.java class="services.ShoppingCartImpl"/>
<service name="Cart">
- <t:binding.atom uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Cart"/>
+ <tuscany:binding.atom uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Cart"/>
</service>
<service name="Total">
- <t:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Total"/>
+ <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Total"/>
</service>
</component>