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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.