diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-23 05:25:33 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-23 05:25:33 +0000 |
commit | 585f81b9436e137c3ed784d9a91efa9e6e792e03 (patch) | |
tree | f40f0179601320ace0b454698dc76aaeddfc6a5d /sca-cpp/trunk/test/store-script/store-http-test | |
parent | 3c6b7d709c7197078f8261f8e3464b0f217c988e (diff) |
Refactored httpd server integration, split http support and server logic in two modules. Added functions to load component implementations packaged as dynamic libraries. Minor monad code cleanup, converted cast operators to separate functions.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@883249 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rwxr-xr-x | sca-cpp/trunk/test/store-script/store-http-test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sca-cpp/trunk/test/store-script/store-http-test b/sca-cpp/trunk/test/store-script/store-http-test index 551731e856..d04eab8a6c 100755 --- a/sca-cpp/trunk/test/store-script/store-http-test +++ b/sca-cpp/trunk/test/store-script/store-http-test @@ -20,7 +20,8 @@ echo "Testing..." # Setup -../../modules/http/httpd-conf tmp 8093 htdocs +../../modules/http/httpd-conf tmp 8090 htdocs +../../modules/server/server-conf tmp cat >>tmp/conf/httpd.conf <<EOF <Location /Catalog> @@ -62,7 +63,7 @@ apachectl -k start -d `pwd`/tmp sleep 1 # Test HTTP GET -curl http://localhost:8093/store.html 2>/dev/null >tmp/store.html +curl http://localhost:8090/store.html 2>/dev/null >tmp/store.html diff tmp/store.html htdocs/store.html rc=$? |