Alternative for NuSoap Class

2

I'm using the NuSoap class to do a webservice.

However, when we have the php version for 7.0 or higher, I have problems with codes that are deprecated for this version.

I would like to know if there is an alternative to the Nusoap class that works in version 7.0 of php.

Currently I changed the version of php in the hosting that I'm working for version 5.6 and apparently it worked. Or would it have another way of doing a webservice?

    
asked by anonymous 19.11.2018 / 12:30

1 answer

1

Particularly I've always used the native PHP library (which is available for both php5 and php7) for creating webservices in SOAP, as follows: link .

I do not know any other alternative, but this has always been useful.

    
19.11.2018 / 13:34