From: <php...@li...> - 2009-04-07 12:42:17
|
Hi, I am new to pjb. I can't get my application started. I don't know exactly what my problem is. my Java-code (eclipse): public class HalloWelt { String hw = "Hallo Welt"; public String getHalloWelt() { return hw; } } my php code:<?php require_once("META-INF/java/Java.inc"); java_require("./HalloWelt.jar"); $myObj = new Java('Hallo Welt'); // display Hello World echo (String) $myObj->getHalloWelt(); ?> I have "helloworld.php",META-INF (Java) and WEB-INF (cgi, lib,web.xml and HalloWelt.jar) in the folder "HelloWorldWebApp" . I try to get this application started http://localhost:8081/HelloWorldWebApp/helloworld.php but it does not work. Have I done anything wrong? Please give me some advice! Many thanks in advance! Regards Katharina |