Alternative to Nusoap Class

Asked

Viewed 45 times

2

I’m using the Nusoap class to make 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 wonder if there is an alternative to the Nusoap class that works in php version 7.0.

I have currently changed the version of php on hosting that I am working on to version 5.6 and it apparently worked. Or have another way to make a webservice?

  • 1

    Nusoap is a library (3rd party) developed for PHP 4 and ported to PHP 5. In PHP 5, there is a native library named PHP SOAP, it is indicated in any version of PHP >= 5.

1 answer

1


Particularly I have always used the native PHP library (which is available for both php5 and php7) for creating SOAP webservices, follow documentation: http://php.net/manual/en/book.soap.php.

I don’t know any other alternative, but this one’s always been useful.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.