PHP is connected to SOAP between NuSOAP and I can recieve data from PHP. After getting data, I get timeout error because of data size is huge which is received. You can see xdebug print out on below.I can run same service using PHP native SOAP command.
I am using following settings. I can not get a solution about the above error although I increased maximum limit as possible as much.
Ultimately, if you're trying to solve the time-out, just add set_time_limit(0); to the top of your script. However, that will not resolve data size issues, so if you're running out of memory, the only thing to do is either request less data per SOAP call (if that applies here), or increase the memory limit further.
benchpresser
ASKER
Hello;
Firstly I want to say thanks for your answer gr8gonzo.
Unfortunately, I get the same error despite using site_time_limit(0). However, it is so weird I can take same size data with using Php native SOAP command. In here the reason I didn’t use Php native SOAP command is the connection has some problem uncertain frequency and can not take data. NuSOAP is perfect I have no connection problem and also other problems. It is so clear and usebility but only problem is memory_limit error. I have to solve this problem.
Thanks for your support.
gr8gonzo
set_time_limit, not site_time_limit. Double-check the spelling...