PHP5 and NUSOAP

So last weekend I installed PHP5 on my server, to finally be able to do some new stuff, and this, it seemed, created some trouble with my SEO scripts that used NUSOAP. What is the problem? Well it’s easy: PHP5 has a soapclient built in, and this causes trouble :).

The solution is easy as well, rename class soapclient and function soapclient to nusoapclient in nusoap.php, and make sure you use new nusoapclient instead of new soapclient in your scripts.

Coming up next!


7 Responses to PHP5 and NUSOAP

  1. Sean Jackson
    Sean Jackson  • 14 years ago

    Yes you could use NuSoap EXCEPT that NuSoap has a HUGE problem in supporting web service requests via SSL when you are hosting on sites like BlueHost, HostGator, etc.

    Most of these providers use a proxy. Usually no problem in http requests but if you need to call a WSDL file using httpS then you are in trouble. See http://orlandowebdesign.blogspot.com/2008/04/godaddy-curl-https-and-nusoapphp.html for a description of the issue and work around.

    PHP5 has better support for SOAP than NuSoap. While this can be a pain for many, this one issue highlights why having the current version of PhP5 is a better option.

  2. siavash
    siavash  • 15 years ago

    includesclasseslibnusoap.php on line 7240

  3. php trivandrum
    php trivandrum  • 15 years ago

    Last year for a project involving travelport xml api integration, we badly needed the soap requests to be gzipped, since the technical support people suggested.

    http://www.php-trivandrum.org/tips/gzip-nusoap-requests.html

  4. Al
    Al  • 16 years ago

    You could also just call ‘new nusoap_client’ instead of ‘new soapclient’ and that would do the trick as well without altering anything else – good tip though!

  5. b.tavakkoli
    b.tavakkoli  • 16 years ago

    Very usefull and i solved my problem with your topic.
    thank you

  6. Gagan
    Gagan  • 16 years ago

    very useful and well written info.

  7. John Estick
    John Estick  • 16 years ago

    Excellent post. I just encountered this problem, and 5 minutes later I have the answer. You have to love the Internet, and especially your little part of it.
    Thanks