jonnysamps Posted February 28, 2008 Share Posted February 28, 2008 I'm seeing incomplete data. I am calling a webservice call with pear soap client library, and am getting back an array (which is expected) but that array is incomplete. I sniffed the network traffic and the webservice soap response contains the complete data that I would expect but when it finally gets returned to my code as an array it is missing the last few items. ie $array = $soapProxy->someWSCall(); //The soap response contains 5 elements for the array but count($array) == 3 // The $array should have count($array) == 5 Is this a configuration thing? Has anyone seen this before? Link to comment https://forums.phpfreaks.com/topic/93425-pear-soap-client-returns-partial-data/ Share on other sites More sharing options...
jonnysamps Posted February 28, 2008 Author Share Posted February 28, 2008 I found the solution to my problem. It is a known bug in the pear soap/client library v.0.11.0. Here is the solution: http://pear.php.net/bugs/bug.php?id=12615 Link to comment https://forums.phpfreaks.com/topic/93425-pear-soap-client-returns-partial-data/#findComment-479412 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.