PHP/Java Bridge java.lang.NoSuchMethodException
- by m1sk
I have setup PHP/Java Bridge with working examples in netbeans tomcat directory.
What doesnt work is using custom JAR
Here is my code:
package com.micha;
public class Hello1Bean {
public Hello1Bean()
{}
String hi() {return "This is my hello message";}
String hello(String name) {return "Hello" + name;}
}
And the php code
…