|
From: <php...@li...> - 2008-11-12 18:00:38
|
Hi,
I was hoping someone could help me with the following:
I'm calling php code on php objects from java using java_closure to create
the dynamic proxies. Most of the time things work smoothly, but from time to
time I get the following error:
php.java.bridge.Request$AbortException
at php.java.bridge.Request.handleSubRequests(Request.java:611)
at php.java.bridge.PhpProcedure.invoke(PhpProcedure.java:82)
at php.java.bridge.PhpProcedure.invoke(PhpProcedure.java:106)
Maximum execution time of 60 seconds exceeded in <b>
http://127.0.0.1:9267/JavaBridge/java/Java.inc</b> on line <b>841</b><br />
What could be the cause of this error? It occurs when I for example do the
following:
call invokeMethod on a proxy object
wait for a while (assumingly passed the maximum execution time)
call invokeMethod again
I am initializing the scripting engine and invocable only once, when
starting my program. Does the invocable need to be refreshed in between or
something like that? I can increase the execution time in php.ini, but since
my program is user driven and the user can decide to wait long periods
before doing something (leading to an invokeMethod call), this would not
really be a nice solution.
Thanks for any help,
Bart
|