Jump to content

General SOAP question


CaptainChainsaw

Recommended Posts

Hi all,

 

I'm in need of some advice to help me decide whether I should be using nusoap or not.

 

Various SOAP integrations have been done using code like this:

 

ini_set('soap.wsdl_cache_enabled', '0');
	ini_set('default_socket_timeout', $timeout);
	$oSoap = new SoapClient('www.myserver.com/test.php', 
							array('connection_timeout' => 15));
	$aReturn = $oSoap->SendRequest($sData);

 

 

I've installed nusoap and got a client and server running successfully.

 

require_once('nusoap-0.9.5/lib/nusoap.php');

$c = new nusoap_client('http://www.myserver.com/soap/server.php?wsdl');

$frequency = $c->call('getValue',
              array('id' => 123456));

 

 

Does anyone know if there will be an issues  with upgrades to php which might cause problems in the future by using nusoap?  What advantages are there for using nusoap?  I just need to know if its worth using nusoap instead of "standard" soap in a live production environment.

 

 

Cheers for any advice.

 

CaptainChainsaw :)

 

 

Link to comment
https://forums.phpfreaks.com/topic/267068-general-soap-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.