I'm using NuSOAP and I get the following error when I display "getError()".
wsdl error: phpType is struct, but value is not an array: see debug output for details
Here is my code
require_once('nusoap/nusoap.php');
$wsdl = "http://192.168.103.200:8080/capabilities/";
$client=new soapclient($wsdl,'wsdl');
$param=array((string)'SIE-A60');
$response = $client->call('getCapabilities',array('CapabilitiesRequest' => 'SIE-ME45i'));
echo '<h1>Error: ' . $client->getError() . '</h1>';
echo "Manufacturer -> " . $response['manufacturer'];
I don't get anything returned from "Manufacturer"
Your help would be much appreciated