I have been trying to install PHP as a java servlet under Jakarta Tomcat v4.0.3, and I'm getting an error message that I can't trace. PHP compiled properly, and I followed the configuration instructions, but now any time I try to run a .php file, EVEN IF IT DOESN'T EXIST, I get an exception in
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
etc... the first several lines of the "root cause" are:
java.lang.UnsatisfiedLinkError: send
at net.php.servlet.send(Native Method)
at net.php.servlet.service(servlet.java:162)
at net.php.servlet.service(servlet.java:180)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
I really need to find a solution... I don't know what I am doing wrong. any suggestions would be greatly appreciated.
Thanks
Richard