More info,
I have changed my earlier script to include some output print statements for debugging and a phpinfo(); to show the current config.
How is your error reporting configured? Check the php.ini file to see where errors are going to, turn error reporting up to E_ALL and see what you get.
Did you try turning up the memory cap?
Please take a look at the script below and its output at:
http://yusuf.lintrix.net/~aw/test.php
The script never gets to the "Got countries..." bit.
Any help much appreciated.
<?php
phpinfo();
require_once('SOAP/Client.php');
$wsdl=new SOAP_WSDL(
'http://wavendon.dsdata.co.uk/axis/services/CarRentalQuotes?wsdl');
print "Getting proxy<br>";
$soapclient = $wsdl->getProxy();
print "Got proxy ok<br>";
$countries=$soapclient->getCountries();
print "Got Countries:...<br>";
print_r ( $countries );
?>
-- Bill Moran Potential Technologies http://www.potentialtech.com
-- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php