summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/server/client-test.hpp
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-02-07 20:19:23 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-02-07 20:19:23 +0000
commit6b7a8a38f609117572820711638508a23ad57850 (patch)
treecfd15ced8363fa5163cbf874ec01178254169fbf /sca-cpp/trunk/modules/server/client-test.hpp
parent9f67144615b018828226949701a6935336cbfc43 (diff)
Support HTTPD graceful restarts for non-stop operation. Simplified Python and Java error capture and recovery.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@907470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/server/client-test.hpp')
-rw-r--r--sca-cpp/trunk/modules/server/client-test.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-cpp/trunk/modules/server/client-test.hpp b/sca-cpp/trunk/modules/server/client-test.hpp
index 0f8b64a031..651a9016b2 100644
--- a/sca-cpp/trunk/modules/server/client-test.hpp
+++ b/sca-cpp/trunk/modules/server/client-test.hpp
@@ -312,7 +312,7 @@ const bool testPut() {
+ (list<value>() + "price" + string("$2.99"));
const list<value> a = mklist<value>(string("item"), string("cart-53d67a61-aa5e-4e5e-8401-39edeba8b83b"), i);
http::CURLSession ch;
- value rc = content(http::put(a, testURI, ch));
+ value rc = content(http::put(a, testURI + "/111", ch));
assert(rc == value(true));
return true;
}
@@ -320,7 +320,7 @@ const bool testPut() {
const bool testDel() {
gc_scoped_pool pool;
http::CURLSession ch;
- value rc = content(http::del(testURI, ch));
+ value rc = content(http::del(testURI + "/111", ch));
assert(rc == value(true));
return true;
}