summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/store-webapp/src/main/resources/store.composite
diff options
context:
space:
mode:
Diffstat (limited to 'java/sca/samples/store-webapp/src/main/resources/store.composite')
-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>