We are testing php 4.3.0RC2 in Linux and having a problem getting any Java to work. Our configuration is set based on the threads on php.net that talk about Java Integration. We don't get any error messages when we try to run a very simple test php file with some Java in it. Instead, the server takes 14 seconds and then says it is finished processing while never actually leaving the page that has the link to the test file.
Any ideas?
Here is the test file:
<?php
get instance of Java class java.lang.System in PHP
$system = new Java("java.lang.System");
print $system . '<br>';
?>