diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-12 20:35:08 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-12 20:35:08 +0000 |
commit | f77d99bcfcb0907f2a7698928afbb862cb40e587 (patch) | |
tree | acecf4307b960ced7398181ade6586e2bf096804 /sca-java-2.x/trunk | |
parent | e8e912279454272cc4937d5479ead8cb2c573802 (diff) |
Tyding up sample binding uri to make it work for the release
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@943672 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r-- | sca-java-2.x/trunk/samples/store-webapp/src/main/resources/store.composite | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/samples/store-webapp/src/main/resources/store.composite b/sca-java-2.x/trunk/samples/store-webapp/src/main/resources/store.composite index 54760bd5b5..7a07b89903 100644 --- a/sca-java-2.x/trunk/samples/store-webapp/src/main/resources/store.composite +++ b/sca-java-2.x/trunk/samples/store-webapp/src/main/resources/store.composite @@ -33,7 +33,7 @@ <implementation.java class="services.FruitsCatalogImpl"/> <property name="currencyCode">USD</property> <service name="Catalog"> - <tuscany:binding.jsonrpc uri="/Catalog"/> + <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/Catalog"/> </service> <reference name="currencyConverter" target="CurrencyConverter"/> </component> @@ -41,10 +41,10 @@ <component name="ShoppingCart"> <implementation.java class="services.ShoppingCartImpl"/> <service name="Cart"> - <tuscany:binding.atom uri="/ShoppingCart/Cart"/> + <tuscany:binding.atom uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Cart"/> </service> <service name="Total"> - <tuscany:binding.jsonrpc uri="/ShoppingCart/Total"/> + <tuscany:binding.jsonrpc uri="http://localhost:8080/sample-store-webapp/ShoppingCart/Total"/> </service> </component> |