Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good alternative to PHP's SOAP extension? [closed]

Tags:

php

soap

I have a project which relies heavily on PHP's SOAP extension. It's great, and works wonderfully.

However, I have to deploy a version of the software on a server that does NOT have the extension (it is PHP5 though). At this time, changing hosts is not an option; and it looks like installing the extension is also not an option.

Is there a pure PHP implementation of a SOAP client library that I can use in its place?

I do not expect a perfect drop-in replacement--I'm completely prepared to mod a bunch of the code--but something that I can work with.

like image 625
jason Avatar asked Jun 24 '09 16:06

jason


People also ask

How do I know if I have PHP SOAP Extension?

SOAP is a php extension, so if it's correctly installed it will appear in phpinfo() .

What is SOAP protocol in PHP?

SOAP stands for Simple Object Access Protocol. SOAP is an application communication protocol. SOAP is a format for sending and receiving messages. SOAP is platform independent.


1 Answers

NuSoap:

http://sourceforge.net/projects/nusoap/

like image 170
karim79 Avatar answered Sep 30 '22 13:09

karim79