|
From: <php...@li...> - 2008-12-24 21:28:51
|
Hi,
I have the problem to execute this simple php file:
<?php
require_once('http://192.168.1.5/JavaBridge/java/Java.inc');
$session=java_session();
?>
The problem have started when I have preinstalled my OS. Everything used to work fine before. The error log is shown bellow. Could you indicate what is the problem here.
Thanks,
Zoran
Dec 24, 2008 10:15:56 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet PhpCGIServlet threw exception
java.lang.RuntimeException: PHP Warning: pfsockopen(): unable to connect to 192.168.1.5:9267 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
) in http://192.168.1.5/JavaBridge/java/Java.inc on line 1045
PHP Fatal error: Uncaught exception 'java_RuntimeException' with message 'Could not connect to the context server 192.168.1.5:9267. Error message: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
(10060)
' in http://192.168.1.5/JavaBridge/java/Java.inc:1046
Stack trace:
#0 http://192.168.1.5/JavaBridge/java/Java.inc(1063): java_HttpHandler->getChannel('9267')
#1 http://192.168.1.5/JavaBridge/java/Java.inc(1174): java_HttpHandler->redirect()
#2 http://192.168.1.5/JavaBridge/java/Java.inc(1201): java_Protocol->redirect()
#3 http://192.168.1.5/JavaBridge/java/Java.inc(1264): java_Protocol->finish()
#4 http://192.168.1.5/JavaBridge/java/Java.inc(620): java_Protocol->invokeEnd()
#5 http://192.168.1.5/JavaBridge/java/Java.inc(677): java_Client->invokeMethod(0, 'getSession', Array)
#6 http://192.168.1.5/JavaBridge/java/Java.inc(1644): java_Client->getSession(Array)
#7 http://192.168.1.5/JavaBridge/ in http://192.168.1.5/JavaBridge/java/Java.inc on line 1046
at php.java.servlet.fastcgi.FastCGIServlet$CGIRunner.parseBody(FastCGIServlet.java:473)
at php.java.servlet.fastcgi.FastCGIServlet$CGIRunner.doExecute(FastCGIServlet.java:368)
at php.java.servlet.fastcgi.FastCGIServlet$CGIRunner.execute(FastCGIServlet.java:376)
at php.java.servlet.CGIServlet.handle(CGIServlet.java:400)
at php.java.servlet.PhpCGIServlet.handle(PhpCGIServlet.java:356)
at php.java.servlet.CGIServlet.doGet(CGIServlet.java:469)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
at java.lang.Thread.run(Unknown Source)
|