ID: 10146 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: No Feedback Bug Type: Java related Operating System: RedHat Linux 7.0 PHP Version: 4.0.4pl1 New Comment:
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". Previous Comments: ------------------------------------------------------------------------ [2002-02-24 06:06:45] [EMAIL PROTECTED] Please test with PHP 4.1.1+JDK 1.2 and report the result back Thanks. ------------------------------------------------------------------------ [2001-04-03 18:08:46] [EMAIL PROTECTED] The PHP servlet is not thread-safe. This causes some versions of Tomcat to crash. But while Tomcat 3.1 will run pages without crashing, large pages loaded very close together end up writing to the same output stream. This is caused by the HttpServletRequest and HttpServletResponse objects being declared as instance objects within the net.php.servlet class. Less resource-intensive pages finish processing fast enough that the output streams don't collide, but when a request is made before a large request is finished, the result of the the first response will get printed with the second. One possible solution is that if multiple request and response objects could be stored (e.g in a hash) and matched back up in the net.php.servlet callback methods, the servlet would then be thread-safe. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=10146&edit=1