soapclient or fopen not working
问题 I'm trying to set up a PHP SoapClient to connect to a wsdl... CURL & WGET from the server work fine. If I try to use soapclient I receive the error messages below. $wsdl = 'http://pav3.cdyne.com/PavService.svc?wsdl'; try { $client = new SoapClient($wsdl, array('trace' => true, 'exceptions' => true)); } catch (SoapFault $f) { echo $client->_getLastRequest(); echo $client->_getLastResponse(); echo $f->getMessage(); } catch (Exception $e) { echo $client->_getLastRequest(); echo $client->