The version at http://sourceforge.net/projects/nusoap/ is now up-to-date.
License
GNU Library or Lesser General Public License version 2.0 (LGPLv2)Follow NuSOAP for PHP 5.3
Other Useful Business Software
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
Rate This Project
Login To Rate This Project
User Reviews
-
There are still few compatibility issues. I wrote a complete article on patching this. azmeer.info/nusoap-with-codeigniter/
-
Nusoapforphp53 works fine.
-
On line 2244 check if 'scheme' key is set: if(isset($u['scheme']) && $u['scheme'] == 'https'){
-
It still gives "Assigning the return value of new by reference is deprecated... on line 7384" in PHP 5.3.2. To fix this, I applied the following: put `unset($this->wsdl);` before this line of code, then removed '&' so it looks like this now and it works so far: unset($this->wsdl); $this->wsdl = new wsdl('',$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout,$this->curl_options,$this->use_curl);
-
Thank you, very usefull!