Bard, Good news!!!!
I managed to get jver.php to run on Redhat6.2,JDK1.2.2, PHP4.02.
I can not call a HelloWorld.class from a hello.php script. The browser eventually timeout.
Here is the /htdocs/hello.php file:
<? $hw=new Java("HelloWorld")
$resutl=$hw->sayIt();
print $result;
?>
Here is the HelloWorld.java file:
class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World");
}
public String sayIt(){
String str = "From HelloWorld";
return str;
}
}
#java HelloWorld
this works.
Also, jawt.php does not work.