From: <php...@li...> - 2010-06-25 11:00:26
|
Hi Julien, I can confirm that http://localhost:8080/JavaBridge/test.php will hang, if the browser is set to use HTTP/1.0 only (tested with FireFox -> about:config -> network.http.version;1.0) or if there's a HTTP/1.0 proxy in between. This is because phpinfo() generates its response in HTTP/1.1 chunks. But non-chunked responses work. For example http://yourHost:8080/JavaBridge/sessionSharing.php even when run through a simple HTTP/1.0 only proxy. > requests from the proxy. You mentioned the proxy could make a request > with a url the filter can't parse My mistake. Line 95 http://php-java-bridge.cvs.sourceforge.net/viewvc/php-java-bridge/php-java-bridge/server/php/java/servlet/PhpCGIFilter.java?revision=1.4&view=markup does forward before it returns (I should stop writing more than one statement per line ... :) > I guess I will have to ask the end users to bypass the proxy for the server Shouldn't be necessary. At least my simple HTTP/1.0 proxy can pass the request/result w/o problems. Which product do you use? Regards, Jost Bökemeier |