I'm using nusoap to connect to a remote webservice.
Nusoap uses the xml_parse function and this is where it fails. The function never returns, it just dies. We've increased the memorylimit and verified that it doesn't run out of memory. This is the function call:
if(!xml_parse($this->parser,$xml,true)){
When the $xml data is not too big, everything goes fine, but when the service returns a lot of data (don't know how much, but there is quite a lot!!), the parse-function dies.
There is probably a timeout somewhere, but I can't figure out where. The soapclient class takes 2 timeout params. I've tried to increase them as well.
Can anybody please help me on this. I'm running out of time!
Using php version 4.3.10.
Thanks
Nusoap uses the xml_parse function and this is where it fails. The function never returns, it just dies. We've increased the memorylimit and verified that it doesn't run out of memory. This is the function call:
if(!xml_parse($this->parser,$xml,true)){
When the $xml data is not too big, everything goes fine, but when the service returns a lot of data (don't know how much, but there is quite a lot!!), the parse-function dies.
There is probably a timeout somewhere, but I can't figure out where. The soapclient class takes 2 timeout params. I've tried to increase them as well.
Can anybody please help me on this. I'm running out of time!
Using php version 4.3.10.
Thanks