I spent two working days to find a reason why my PHP SOAP client doesn’t connect to the Perl SOAP server. As PHP SOAP implementation I use NuSOAP. I chose it because the SOAP client is needed for SugarCRM and NuSOAP is already included there. I created client like that: require_once(‘include/nusoap/nusoap.php’); $client = new soapclient(‘http://my.proxy.host:8086’); and then I called a simple method: $result = $client->call(‘ping’, […]