I recently created a Java frontend for a PHP web-service which uses PHPs SoapServer.
My application is performing a long-running data synchronization and from what I know from PHP I prepared myself to get closed connections because of the max_execution_time
limit.
But I never get any kind of error, as if the SoapServer instance is running forever.
My best guess here, is that I don't really understand how SoapServer is working. So, can anyone shed some light on this? Is SoapServer not affected by the max_execution_time
?
EDIT: In my tests max_execution_time
is set to 5 minutes, but my program is running for hours.