From: <php...@li...> - 2006-06-04 11:22:09
|
Hi, please excuse the delay. > java.hosts="127.0.0.1:8443" > will lead to the same error. Is there any way to > make use of the bride using ssl? It cannot use SSL, no. Isn't it possible to use a dedicated HTTP port for the PHP<-->JAVA communication? For example the following entry in the tomcat server.xml should solve this: [...] <Service name="Catalina"> [...] <!-- Used by local PHP clients --> <Connector port="7777" address="127.0.0.1"/> [...] The php.ini entry would look like: extension=java.so [java] java.hosts=127.0.0.1:7777 java.servlet=On The 127.0.0.1 makes the 7777 port accessible to the local host only, it is not even visible from the internet. Regards, Jost Boekemeier ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de |