Search code examples
phpcakephpnusoap

How to make nuSoap work with CakePHP?


I have already put nusoap folder in cakephp vendor folder

../vendor/nusoap/lib/nusoap.php (it has more than one files)

I'm trying to include it as following but not working. What are the other alternatives?

App::import('vendor','nusoap');


Solution

  • You can include the file using this code

    App::import('Vendor', 'nusoap', array('file' => 'nusoap'.DS.'lib'.DS.'nusoap.php'));