summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/test/store-script/htdocs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/test/store-script/htdocs/store.html2
-rw-r--r--sca-cpp/trunk/test/store-script/htdocs/store.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/sca-cpp/trunk/test/store-script/htdocs/store.html b/sca-cpp/trunk/test/store-script/htdocs/store.html
index 0378b454cc..f8c6027abe 100644
--- a/sca-cpp/trunk/test/store-script/htdocs/store.html
+++ b/sca-cpp/trunk/test/store-script/htdocs/store.html
@@ -162,7 +162,7 @@
<br>
<input type="button" onClick="checkoutCart()" value="Checkout">
<input type="button" onClick="deleteCart()" value="Empty">
- <a href="../ShoppingCart/">(feed)</a>
+ <a href="../shoppingCart/">(feed)</a>
</form>
</div>
</body>
diff --git a/sca-cpp/trunk/test/store-script/htdocs/store.js b/sca-cpp/trunk/test/store-script/htdocs/store.js
index 9cb09f4b78..9cd8eb526d 100644
--- a/sca-cpp/trunk/test/store-script/htdocs/store.js
+++ b/sca-cpp/trunk/test/store-script/htdocs/store.js
@@ -650,9 +650,9 @@ tuscany.sca.Property = function (name) {
}
tuscany.sca.referenceMap = new Object();
-tuscany.sca.referenceMap.catalog = new JSONRpcClient("/Catalog").Service;
-tuscany.sca.referenceMap.shoppingCart = new AtomClient("/ShoppingCart");
-tuscany.sca.referenceMap.shoppingTotal = new JSONRpcClient("/Total").Service;
+tuscany.sca.referenceMap.catalog = new JSONRpcClient("/catalog").Service;
+tuscany.sca.referenceMap.shoppingCart = new AtomClient("/shoppingCart");
+tuscany.sca.referenceMap.shoppingTotal = new JSONRpcClient("/total").Service;
tuscany.sca.Reference = function (name) {
return tuscany.sca.referenceMap[name];
}