How can I check whether the server is able to handle SOAP requests

nusoap, php, soap, soap-client

Solution

You can use:

if (extension_loaded('soap')) {
  // Do things
}

http://php.net/manual/en/function.extension-loaded.php

Problem

How can I check whether the server is able to handle SOAP requests at run time ? I need to verify it before my script is executing.

Original source