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!
-
Event
WordCamp Netherlands 2024
November 29 - 30, 2024 Team Yoast is at Sponsoring WordCamp Netherlands 2024! Click through to see who will be there, what we will do, and more! See where you can find us next » -
SEO webinar
Webinar: How to start with SEO (November 19, 2024)
19 November 2024 Learn how to start your SEO journey the right way with our free webinar. Get practical tips and answers to all your questions in the live Q&A! All Yoast SEO webinars »
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.
includesclasseslibnusoap.php on line 7240
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
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!
Very usefull and i solved my problem with your topic.
thank you
very useful and well written info.
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