Axis and SoapServer interop tests

This commit is contained in:
Andreas Schamberger
2013-08-23 23:25:16 +02:00
parent f8a80c0361
commit 2b12264304
73 changed files with 2435 additions and 904 deletions

View File

@ -0,0 +1,15 @@
#!/bin/bash
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
php -S localhost:8081 -t "$DIR/.."&
echo "Waiting until PHP webserver is ready on port 8081"
while [[ -z `curl -s 'http://localhost:8081' ` ]]
do
echo -n "."
sleep 2s
done
echo "PHP webserver is up"