nusoap
nusoap copied to clipboard
NuSOAP re-packaged for Packagist/Composer
The `$v` variable can be an array https://github.com/fergusean/nusoap/blob/463c772ae805aed7f396d89e6dce1dc0ce4c038b/lib/class.wsdl.php#L1550
Array to string conversion in .../nusoap/lib/class.wsdl.php:1550 $v can be an array that is perfectly serializable, but debug message messes it up.
Hi there. The nusoap.php file on lib directory is missing or i have to do something else (the examples use that file).
PHP 4 constructors are producing E_DEPRECATED messages now - http://php.net/manual/en/migration70.deprecated.php
the probleme is cause in line 112 in the file vendor/fergusean/nusoap/lib/class.wsdl.php //$this->schemas[$ns]->imports[$ns2][$ii]['loaded'] = true;)
Hi! I've been using your nusoap package from Packagist for a while now and it's worked pretty well for me. Today, I came across a weird issue. I was getting...
See: https://github.com/fergusean/nusoap/blob/master/lib/class.wsdl.php#L1550 When looping through `$value` using `$k` (key) and `$v` (value) - a NOTICE is raised if `$v` is an array (array to string conversion). Not a big deal,...
As I see this the only one working version of nuSoap that I have found on the GitHub. I am new to SOAP and I am following some tutorials that...
Hi! I fix warnings as described here http://www.noaheltzroth.com/nusoap-version-0-9-5-attempt-to-modify-property-of-non-object-in-nusoap-php/
Basically, remove static class emulation and update the class to be a proper static one. This is done in order to solve an issue with PHPUnit, more info over here:...