From: <php...@li...> - 2010-06-23 08:29:07
|
Hi, > I tried to run http://myServerIP:8080/JavaBridge/jsr223.jsp, and it > can be reached. this means that the PHP/Java Bridge is up and running and can be reached from a remote host. jsr223.jsp returns PHP-generated content. > Does it confirm this is not a network issue ? Not necessarily. It could still be possible that some component is intercepting *.php requests. Can you please rename index.php to index.phtml and try to access it? If it works, please change the servlet mapping from WEB-INF/web.xml from php to phtml. Does that work? > I have an exception report though. > > javax.servlet.ServletException: java/io/Closeable > I forgot to add in my first post that I am using Tomcat 5.0.27, is > that an issue ? This is another issue. Java 1.4 doesn't have java.io.Closeable, so jsr223.jsp has caught an exception. Upgrading Java to 1.5 or 1.6 should solve this issue. Regards, Jost Bökemeier |