PHP Modules Tutorials - Herong's Tutorial Examples - v5.18, by Herong Yang
SOAP Module and PHP Implementations of SOAP
This section describes the SOAP protocol and PHP implementations of SOAP. PEAR::Package::SOAP, NuSOAP, and php_soap.dll (from the PHP Group) seems to be 3 different SOAP implementations.
What Is SOAP Module? - SOAP (Simple Object Access Protocol) Module, also called SOAP Extension, allows you to create and call Web services using the SOAP protocol. SOAP Module was introduced in PHP 5.
PHP SOAP extension is included in the PHP distribution package as shown below on my Windows system:
herong> dir \php\ext\php_soap.dll 12/05/2018 09:38 PM 247,808 php_soap.dll
SOAP module is not the only implementation of the SOAP protocol. If you search the Web with key words of "PHP Implementation of SOAP", you may find these implementations:
Table of Contents
Introduction and Installation of PHP
Managing PHP Engine and Modules on macOS
Managing PHP Engine and Modules on CentOS
DOM Module - Parsing HTML Documents
GD Module - Manipulating Images and Pictures
MySQLi Module - Accessing MySQL Server
OpenSSL Module - Cryptography and SSL/TLS Toolkit
PCRE Module - Perl Compatible Regular Expressions
►SOAP Module - Creating and Calling Web Services
►SOAP Module and PHP Implementations of SOAP
Turning on the Default SOAP Module
Hello_There.php - First Example of SOAP
SoapClient - SOAP Client Class and Functions
Hello_There_Dump.php - Debugging SOAP Messages
Using SOAP Extension in non-WSDL Mode
SOAP Module - Server Functions and Examples