CaptainChainsaw Posted August 14, 2012 Share Posted August 14, 2012 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.